/* ==========================================================================
   MICROTECH COMPUTER - WHY CHOOSE US STYLESHEET
   Matches brand identity, clean typography, trustworthy educational aesthetic
   ========================================================================== */

/* --- Page-Specific Variables --- */
:root {
  --wcu-card-bg: #FFFFFF;
  --wcu-card-border: #E2E8F0;
  --wcu-card-hover-border: #93C5FD;
  --wcu-card-shadow: 0 4px 20px -2px rgba(11, 25, 44, 0.06), 0 2px 6px -1px rgba(11, 25, 44, 0.04);
  --wcu-card-shadow-hover: 0 12px 30px -4px rgba(37, 99, 235, 0.15), 0 4px 12px -2px rgba(11, 25, 44, 0.06);
}

/* ==========================================================================
   SECTION 1 — HERO SECTION
   ========================================================================== */
.wcu-hero-section {
  position: relative;
  background-color: var(--primary-navy);
  color: var(--color-white);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.wcu-hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(11, 25, 44, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wcu-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(11, 25, 44, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wcu-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wcu-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  color: #93C5FD;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.wcu-hero-title {
  font-size: 3.15rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.wcu-hero-title .highlight-blue {
  color: #38BDF8;
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wcu-hero-desc {
  font-size: 1.125rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 580px;
}

.wcu-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.wcu-hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.wcu-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #E2E8F0;
  font-weight: 500;
}

.wcu-trust-item i {
  color: #38BDF8;
  font-size: 1.05rem;
}

/* Hero Right Image */
.wcu-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wcu-hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 500px;
  background: #162B45;
}

.wcu-hero-img-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   SECTION 2 — INTRODUCTION ("MORE THAN JUST COMPUTER CLASSES")
   ========================================================================== */
.wcu-intro-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.wcu-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.wcu-intro-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wcu-intro-media-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.wcu-intro-img {
  width: 220px;
  height: 180px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.wcu-intro-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
}

.wcu-intro-p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.wcu-intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wcu-highlight-pill {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.wcu-highlight-pill:hover {
  transform: translateX(4px);
  border-color: var(--vibrant-blue);
  background: var(--sky-lighter);
}

.wcu-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  color: var(--vibrant-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.wcu-highlight-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   SECTION 3 — KEY ADVANTAGES (8 CARDS)
   ========================================================================== */
.wcu-advantages-section {
  background-color: var(--bg-body);
  padding: 5.5rem 0;
}

.wcu-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.wcu-adv-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.wcu-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wcu-card-shadow-hover);
  border-color: var(--wcu-card-hover-border);
}

.wcu-adv-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--sky-lighter);
  border: 1px solid var(--border-blue);
  color: var(--vibrant-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.wcu-adv-card:hover .wcu-adv-icon-box {
  background: var(--vibrant-blue);
  color: var(--color-white);
  border-color: var(--vibrant-blue);
}

.wcu-adv-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.wcu-adv-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 4 — PRACTICAL LEARNING ("LEARN BY DOING")
   ========================================================================== */
.wcu-doing-section {
  background: var(--color-white);
  padding: 5.5rem 0;
}

.wcu-doing-box {
  background: linear-gradient(145deg, #0B192C 0%, #162B45 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.wcu-doing-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wcu-doing-left {
  position: relative;
  z-index: 2;
}

.wcu-doing-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.wcu-doing-text {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.wcu-steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.wcu-step-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.85rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wcu-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #38BDF8;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.wcu-step-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.wcu-step-desc {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.35;
}

.wcu-doing-right {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wcu-doing-right img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   SECTION 5 — COURSE FLEXIBILITY ("SKILLS FOR DIFFERENT GOALS")
   ========================================================================== */
.wcu-goals-section {
  background-color: var(--bg-body);
  padding: 5.5rem 0;
}

.wcu-goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.wcu-goal-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.wcu-goal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wcu-card-shadow-hover);
  border-color: var(--wcu-card-hover-border);
}

.wcu-goal-img-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.wcu-goal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wcu-goal-card:hover .wcu-goal-img-wrap img {
  transform: scale(1.05);
}

.wcu-goal-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wcu-goal-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.wcu-goal-header i {
  color: var(--vibrant-blue);
  font-size: 1.15rem;
}

.wcu-goal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wcu-goal-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wcu-goals-cta-wrap {
  text-align: center;
}

/* ==========================================================================
   SECTION 6 — WHAT YOU CAN LEARN ("BUILD SKILLS ACROSS MULTIPLE AREAS")
   ========================================================================== */
.wcu-areas-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.wcu-areas-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.1rem;
}

.wcu-area-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.wcu-area-card:hover {
  transform: translateY(-3px);
  background: var(--sky-lighter);
  border-color: var(--vibrant-blue);
  box-shadow: var(--shadow-md);
}

.wcu-area-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--border-blue);
  color: var(--vibrant-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.wcu-area-card:hover .wcu-area-icon {
  background: var(--vibrant-blue);
  color: var(--color-white);
}

.wcu-area-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

/* ==========================================================================
   SECTION 7, 8 & 9 — LEARNING APPROACH, PRACTICAL SKILLS & TRUST (DUAL BLOCK)
   ========================================================================== */
.wcu-approach-section {
  background-color: var(--bg-body);
  padding: 5.5rem 0;
}

.wcu-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.wcu-block-box {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wcu-block-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.wcu-block-p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Left block content */
.wcu-points-media-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
}

.wcu-points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wcu-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.wcu-point-item i {
  color: var(--vibrant-blue);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.wcu-point-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.wcu-point-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.wcu-points-img {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* Right block cards */
.wcu-tri-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wcu-tri-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.wcu-tri-card:hover {
  transform: translateY(-3px);
  border-color: var(--vibrant-blue);
  background: var(--sky-lighter);
}

.wcu-tri-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--vibrant-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.wcu-tri-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.04em;
}

.wcu-tri-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 10 — FREE TRIAL CTA ("EXPERIENCE MICROTECH BEFORE YOU ENROL")
   ========================================================================== */
.wcu-trial-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
}

.wcu-trial-box {
  background: linear-gradient(145deg, #0B192C 0%, #162B45 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  padding: 2.75rem 3rem;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.6fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.wcu-trial-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.wcu-trial-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wcu-trial-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.wcu-trial-text-wrap {
  position: relative;
  z-index: 2;
}

.wcu-trial-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.wcu-trial-p {
  font-size: 0.975rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.wcu-trial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.wcu-trial-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}

.wcu-calendar-badge {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wcu-calendar-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 11 — FREQUENTLY ASKED QUESTIONS
   ========================================================================== */
.wcu-faq-section {
  background-color: var(--bg-body);
  padding: 5.5rem 0;
}

.wcu-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.wcu-faq-card {
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.wcu-faq-card:hover {
  border-color: var(--wcu-card-hover-border);
}

.wcu-faq-card.active {
  border-color: var(--vibrant-blue);
  box-shadow: 0 4px 15px -2px rgba(37, 99, 235, 0.12);
}

.wcu-faq-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  transition: color var(--transition-fast);
}

.wcu-faq-btn:hover {
  color: var(--vibrant-blue);
}

.wcu-faq-icon {
  font-size: 1.1rem;
  color: var(--royal-blue);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.wcu-faq-card.active .wcu-faq-icon {
  transform: rotate(180deg);
}

.wcu-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
}

.wcu-faq-inner {
  padding-bottom: 1.25rem;
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

/* ==========================================================================
   SECTION 12 — FINAL CTA BANNER
   ========================================================================== */
.wcu-final-cta-section {
  background: linear-gradient(135deg, #0B192C 0%, #060E18 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.wcu-final-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.wcu-final-left {
  max-width: 650px;
}

.wcu-final-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.wcu-final-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 0;
}

.wcu-final-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .wcu-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .wcu-areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wcu-dual-grid {
    grid-template-columns: 1fr;
  }

  .wcu-trial-box {
    grid-template-columns: 1fr 1.5fr;
  }

  .wcu-trial-graphic {
    display: none;
  }
}

@media (max-width: 860px) {
  .wcu-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .wcu-hero-title {
    font-size: 2.35rem;
  }

  .wcu-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .wcu-hero-ctas {
    justify-content: center;
  }

  .wcu-hero-trust-bar {
    justify-content: center;
  }

  .wcu-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wcu-doing-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .wcu-steps-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-points-media-row {
    grid-template-columns: 1fr;
  }

  .wcu-trial-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .wcu-trial-actions {
    justify-content: center;
  }

  .wcu-faq-grid {
    grid-template-columns: 1fr;
  }

  .wcu-final-box {
    flex-direction: column;
    text-align: center;
  }

  .wcu-final-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .wcu-advantages-grid {
    grid-template-columns: 1fr;
  }

  .wcu-goals-grid {
    grid-template-columns: 1fr;
  }

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

  .wcu-tri-cards-row {
    grid-template-columns: 1fr;
  }

  .wcu-intro-media-row {
    flex-direction: column;
  }

  .wcu-intro-img {
    width: 100%;
    height: 200px;
  }

  .wcu-hero-title {
    font-size: 1.95rem;
  }

  .wcu-final-title {
    font-size: 1.75rem;
  }

  .wcu-final-actions {
    flex-direction: column;
    width: 100%;
  }

  .wcu-final-actions .btn {
    width: 100%;
  }
}
