:root {
  --mh-bg: #0a0118;
  --mh-bg-soft: #160a28;
  --mh-panel: rgba(255,255,255,.08);
  --mh-panel-soft: rgba(255,255,255,.05);
  --mh-panel-strong: rgba(255,255,255,.12);
  --mh-border: rgba(255, 255, 255, .08);
  --mh-border-strong: rgba(255, 255, 255, .15);
  --mh-text: #f0e6ff;
  --mh-title: #ffffff;
  --mh-muted: #c4b5d8;
  --mh-muted-2: #a891c7;
  --mh-primary: #a855f7;
  --mh-primary-2: #ec4899;
  --mh-primary-3: #f97316;
  --mh-dark: #050008;
  --mh-shadow: 0 30px 90px rgba(168, 85, 247, .3);
  --mh-card-shadow: 0 20px 50px rgba(236, 72, 153, .2);
  --mh-glow: 0 0 40px rgba(168, 85, 247, .4);
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, .3), 0 0 40px rgba(236, 72, 153, .2); }
  50% { box-shadow: 0 0 40px rgba(168, 85, 247, .5), 0 0 80px rgba(236, 72, 153, .4); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.matchou-home {
  color: var(--mh-text);
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 85, 247, .4), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, .3), transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(249, 115, 22, .25), transparent 40%),
    linear-gradient(135deg, #0a0118 0%, #1a0b2e 50%, #0f0520 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  overflow: hidden;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.matchou-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .5), transparent);
  animation: shimmer 3s infinite;
}

.matchou-home * { box-sizing: border-box; }
.matchou-home-shell { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.matchou-home-shell.narrow { width: min(980px, calc(100% - 40px)); }
.matchou-home .center { text-align: center; }
.matchou-home img { max-width: 100%; height: auto; }
.matchou-home a { text-decoration: none; }

.matchou-home-section { padding: 100px 0; position: relative; }
.matchou-home-section--cards { padding-top: 20px; }
.matchou-home-section--soft {
  background: rgba(255,255,255,.03);
  border-block: 1px solid rgba(255, 255, 255, .05);
}

.matchou-home-overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.matchou-home-section-head { margin-bottom: 60px; }
.matchou-home-section-head p { max-width: 720px; margin-inline: auto; }
.matchou-home-section-head h2,
.matchou-home h1,
.matchou-home-cta h2,
.matchou-home-showcase-copy h2,
.matchou-home-story-copy h2,
.matchou-home-trust-box h2 {
  margin: 0 0 20px;
  line-height: 1.1;
  color: var(--mh-title);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #e4d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.matchou-home h1 {
  font-size: clamp(48px, 6.5vw, 86px);
  max-width: 860px;
  letter-spacing: -.045em;
}

.matchou-home-section-head h2,
.matchou-home-cta h2,
.matchou-home-showcase-copy h2,
.matchou-home-story-copy h2,
.matchou-home-trust-box h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -.03em;
}

.matchou-home p {
  color: var(--mh-muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.matchou-home strong { 
  color: var(--mh-title);
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.matchou-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(236, 72, 153, .15));
  border: 1px solid rgba(168, 85, 247, .3);
  font-size: 13px;
  font-weight: 700;
  color: #e9d5ff;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(168, 85, 247, .2), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: pulse-glow 3s ease-in-out infinite;
}

.matchou-home-hero { padding: 80px 0 60px; position: relative; }
.matchou-home-hero-grid,
.matchou-home-showcase,
.matchou-home-story-grid,
.matchou-home-trust-wrap {
  display: grid;
  gap: 60px;
  align-items: center;
}

.matchou-home-hero-grid { grid-template-columns: 1.1fr .9fr; }
.matchou-home-showcase { grid-template-columns: .9fr 1.1fr; }
.matchou-home-story-grid,
.matchou-home-trust-wrap { grid-template-columns: 1fr 1fr; }

.matchou-home-subtitle {
  font-size: clamp(20px, 2.2vw, 26px);
  color: #d8b4fe;
  max-width: 720px;
  line-height: 1.5;
}

.matchou-home-support {
  max-width: 660px;
  color: var(--mh-muted);
}

.matchou-home-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 30px;
}

.matchou-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 36px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 17px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.matchou-home-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}

.matchou-home-btn:hover::before {
  width: 300px;
  height: 300px;
}

.matchou-home-btn--primary {
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-2), var(--mh-primary-3));
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 20px 60px rgba(236, 72, 153, .4), 0 0 40px rgba(168, 85, 247, .3);
  animation: gradient-shift 3s ease infinite;
}

.matchou-home-btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 30px 80px rgba(236, 72, 153, .6), 0 0 60px rgba(168, 85, 247, .5);
}

.matchou-home-btn--secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(168, 85, 247, .4);
  box-shadow: 0 10px 30px rgba(0,0,0, .2);
  backdrop-filter: blur(10px);
}

.matchou-home-btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.15);
  border-color: rgba(168, 85, 247, .6);
}

.matchou-home-pills,
.matchou-home-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.matchou-home-pills span,
.matchou-home-info-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(168, 85, 247, .2);
  font-size: 14px;
  color: #d8b4fe;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.matchou-home-pills span:hover,
.matchou-home-info-pills span:hover {
  background: rgba(168, 85, 247, .2);
  border-color: rgba(168, 85, 247, .4);
  transform: translateY(-2px);
}

.matchou-home-hero-visual,
.matchou-home-card,
.matchou-home-steps article,
.matchou-home-faq details,
.matchou-home-cta-box,
.matchou-home-story-note,
.matchou-home-trust-box,
.matchou-home-faq-box,
.matchou-home-device-screen,
.matchou-home-device-badge {
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  border: 1px solid var(--mh-border-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--mh-shadow), inset 0 1px 0 rgba(255,255,255,.1);
}

.matchou-home-card,
.matchou-home-steps article,
.matchou-home-faq details,
.matchou-home-trust-box,
.matchou-home-faq-box,
.matchou-home-story-note { 
  box-shadow: var(--mh-card-shadow), inset 0 1px 0 rgba(255,255,255,.05);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.matchou-home-card:hover,
.matchou-home-steps article:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(236, 72, 153, .4), inset 0 1px 0 rgba(255,255,255,.15);
  border-color: rgba(168, 85, 247, .5);
}

.matchou-home-hero-visual {
  border-radius: 32px;
  overflow: hidden;
  min-height: 540px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.matchou-home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matchou-home-image-placeholder {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: #a891c7;
  background: linear-gradient(135deg, rgba(168, 85, 247, .1), rgba(236, 72, 153, .05));
  line-height: 1.8;
}

.matchou-home-image-placeholder.small { min-height: 240px; }

.matchou-home-floating-card {
  position: absolute;
  max-width: 260px;
  padding: 16px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .9), rgba(236, 72, 153, .8));
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 20px 50px rgba(168, 85, 247, .4), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: float 4s ease-in-out infinite;
}

.matchou-home-floating-card--one { 
  left: 20px; 
  bottom: 20px;
  animation-delay: -1s;
}

.matchou-home-floating-card--two { 
  right: 20px; 
  top: 20px;
  animation-delay: -2s;
}

.matchou-home-card-grid { display: grid; gap: 24px; }
.matchou-home-card-grid.three { grid-template-columns: repeat(3, 1fr); }
.matchou-home-card-grid.two { grid-template-columns: repeat(2, 1fr); }
.matchou-home-card-grid.four { grid-template-columns: repeat(4, 1fr); }

.matchou-home-card {
  padding: 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.matchou-home-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .5), rgba(236, 72, 153, .3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.matchou-home-card:hover::before {
  opacity: 1;
}

.matchou-home-card h3,
.matchou-home-steps article h3 {
  margin: 0 0 14px;
  color: var(--mh-title);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.matchou-home-card p,
.matchou-home-steps article p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: var(--mh-muted);
}

.matchou-home-card-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .3), rgba(236, 72, 153, .25));
  color: #e9d5ff;
  box-shadow: 0 10px 30px rgba(168, 85, 247, .3), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .3s ease;
}

.matchou-home-card:hover .matchou-home-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(236, 72, 153, .5), inset 0 1px 0 rgba(255,255,255,.3);
}

.matchou-home-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.matchou-home-card-icon--small {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.matchou-home-card-icon--small svg {
  width: 28px;
  height: 28px;
}

.matchou-home-story-copy p,
.matchou-home-showcase-copy p,
.matchou-home-trust-box p { max-width: 640px; }

.matchou-home-story-note {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, .15), rgba(236, 72, 153, .1));
}

.matchou-home-story-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

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

.matchou-home-steps article {
  padding: 32px;
  border-radius: 24px;
  position: relative;
}

.matchou-home-steps article span {
  min-width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-2));
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .05em;
  margin-bottom: 20px;
  box-shadow: 0 15px 40px rgba(236, 72, 153, .4);
}

.matchou-home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.matchou-home-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(168, 85, 247, .2);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.matchou-home-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, .5);
  box-shadow: 0 20px 50px rgba(168, 85, 247, .3);
}

.matchou-home-stat-number {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.matchou-home-stat-label {
  font-size: 14px;
  color: var(--mh-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.matchou-home-device-stage {
  position: relative;
  min-height: 600px;
}

.matchou-home-device {
  position: absolute;
  filter: drop-shadow(0 30px 60px rgba(168, 85, 247, .3));
}

.matchou-home-device-screen {
  overflow: hidden;
  background: #000;
}

.matchou-home-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matchou-home-device--laptop {
  width: min(100%, 680px);
  left: 0;
  top: 0;
}

.matchou-home-device--laptop .matchou-home-device-top {
  height: 20px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #2d2d3a, #1a1a24);
}

.matchou-home-device--laptop .matchou-home-device-screen {
  border-radius: 0 0 20px 20px;
  min-height: 320px;
}

.matchou-home-device--laptop .matchou-home-device-base {
  width: 88%;
  height: 14px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #4a4a5a, #2d2d3a);
}

.matchou-home-device--phone {
  width: 200px;
  right: 0;
  bottom: 20px;
}

.matchou-home-device--phone .matchou-home-device-screen {
  min-height: 400px;
  border-radius: 36px;
  padding-top: 20px;
}

.matchou-home-device-notch {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background: #000;
  z-index: 2;
}

.matchou-home-device-badge {
  position: absolute;
  left: 50px;
  bottom: 15px;
  width: 180px;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-8deg);
  animation: float 5s ease-in-out infinite;
}

.matchou-home-device-badge img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.matchou-home-trust-wrap { align-items: stretch; }

.matchou-home-trust-box,
.matchou-home-faq-box {
  border-radius: 32px;
  padding: 40px 32px;
}

.matchou-home-faq-label {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: #d8b4fe;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.matchou-home-cta { padding-top: 100px; padding-bottom: 100px; }

.matchou-home-cta-box {
  text-align: center;
  padding: 80px 40px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top center, rgba(168, 85, 247, .3), transparent 60%),
    radial-gradient(circle at bottom center, rgba(236, 72, 153, .2), transparent 60%),
    linear-gradient(135deg, rgba(30, 10, 60, .9), rgba(20, 5, 40, .95));
  border: 2px solid rgba(168, 85, 247, .3);
  box-shadow: 0 40px 100px rgba(168, 85, 247, .5), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.matchou-home-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(168, 85, 247, .1), transparent);
  animation: shimmer 3s infinite;
}

.matchou-home-cta-box .matchou-home-overline,
.matchou-home-cta-box h2,
.matchou-home-cta-box p { color: #fff; }

.matchou-home-cta-box .matchou-home-overline { 
  background: linear-gradient(135deg, #e9d5ff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.matchou-home-cta-box h2 {
  background: linear-gradient(135deg, #fff 0%, #fae8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.matchou-home-cta-box p { 
  max-width: 740px; 
  margin-inline: auto; 
  margin-bottom: 32px; 
  color: rgba(255,255,255,.9);
  font-size: 19px;
}

.matchou-home-faq { display: grid; gap: 16px; }

.matchou-home-faq details {
  border-radius: 20px;
  padding: 20px 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  cursor: pointer;
  transition: all .3s ease;
}

.matchou-home-faq details:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, .15), rgba(236, 72, 153, .1));
  border-color: rgba(168, 85, 247, .4);
}

.matchou-home-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--mh-title);
  list-style: none;
}

.matchou-home-faq summary::-webkit-details-marker { display: none; }

.matchou-home-faq details div {
  padding-top: 14px;
  color: var(--mh-muted);
  line-height: 1.8;
  font-size: 16px;
}

.mhl-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), transform .8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mhl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .matchou-home-card-grid.three,
  .matchou-home-card-grid.two,
  .matchou-home-card-grid.four,
  .matchou-home-steps,
  .matchou-home-stats { grid-template-columns: repeat(2, 1fr); }

  .matchou-home-device-stage { min-height: 540px; }
  .matchou-home-device--laptop { width: 100%; }
}

@media (max-width: 980px) {
  .matchou-home-section,
  .matchou-home-hero { padding: 80px 0; }

  .matchou-home-hero-grid,
  .matchou-home-showcase,
  .matchou-home-story-grid,
  .matchou-home-trust-wrap { grid-template-columns: 1fr; }

  .matchou-home-showcase-copy p,
  .matchou-home-story-copy p,
  .matchou-home-trust-box p { max-width: none; }

  .matchou-home-hero-visual { max-width: 760px; margin-inline: auto; }
  .matchou-home-device-stage { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 767px) {
  .matchou-home-shell,
  .matchou-home-shell.narrow { width: calc(100% - 24px); }

  .matchou-home-section,
  .matchou-home-hero { padding: 60px 0; }

  .matchou-home h1 {
    font-size: clamp(40px, 11vw, 56px);
    max-width: 100%;
    margin-bottom: 16px;
  }

  .matchou-home-section-head h2,
  .matchou-home-cta h2,
  .matchou-home-showcase-copy h2,
  .matchou-home-story-copy h2,
  .matchou-home-trust-box h2 { font-size: 36px; }

  .matchou-home p { font-size: 17px; }
  .matchou-home-badge { font-size: 12px; padding: 10px 20px; }

  .matchou-home-subtitle {
    font-size: 19px;
    line-height: 1.6;
  }

  .matchou-home-hero-visual {
    min-height: auto;
    border-radius: 24px;
  }

  .matchou-home-hero-visual img,
  .matchou-home-hero-visual .matchou-home-image-placeholder {
    aspect-ratio: 16/11;
    min-height: auto;
  }

  .matchou-home-actions { flex-direction: column; gap: 14px; }
  .matchou-home-btn { width: 100%; min-height: 58px; font-size: 17px; }

  .matchou-home-card-grid.three,
  .matchou-home-card-grid.two,
  .matchou-home-card-grid.four,
  .matchou-home-steps,
  .matchou-home-stats,
  .matchou-home-showcase { grid-template-columns: 1fr; }

  .matchou-home-card,
  .matchou-home-steps article,
  .matchou-home-faq details,
  .matchou-home-trust-box,
  .matchou-home-faq-box { 
    border-radius: 20px;
    padding: 24px;
  }

  .matchou-home-card h3,
  .matchou-home-steps article h3 { font-size: 21px; }

  .matchou-home-pills,
  .matchou-home-info-pills { gap: 10px; }

  .matchou-home-pills span,
  .matchou-home-info-pills span {
    width: 100%;
    text-align: center;
  }

  .matchou-home-device-stage {
    min-height: auto;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .matchou-home-device {
    position: static;
    width: 100%;
  }

  .matchou-home-device--laptop .matchou-home-device-screen { min-height: auto; }
  .matchou-home-device--laptop .matchou-home-device-screen img { aspect-ratio: 16/10; }

  .matchou-home-device--phone {
    width: min(80%, 300px);
    margin: 0 auto;
  }

  .matchou-home-device--phone .matchou-home-device-screen { min-height: auto; }
  .matchou-home-device--phone .matchou-home-device-screen img { aspect-ratio: 9/19; }

  .matchou-home-device-badge {
    position: static;
    width: 100%;
    transform: none;
  }

  .matchou-home-floating-card {
    position: static;
    max-width: none;
    margin: 14px;
  }

  .matchou-home-cta-box { padding: 50px 24px; }
  .matchou-home-faq summary { font-size: 17px; }

  .mhl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* FIX: Centralização do subtítulo da seção de recursos */
.matchou-home-section-head.center p {
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding: 0 20px !important;
}

.matchou-home-section-head.center h2 {
  text-align: center !important;
}