/* ============================================
   真面目くんの逆襲 | マッチングアプリ丸投げ代行室
   Landing Page Styles — Premium & Bespoke
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Darker, richer palette for professional/bespoke feel */
  --bg-dark: #0A0F18;
  --bg-surface: #121A26;
  --bg-surface-elevated: #1A2436;

  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --accent-copper: #D97736;
  --accent-copper-hover: #AB5D2A;
  --accent-gold: #C29B4F;
  --success-green: #10B981;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);

  --font-main: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Refined shadows instead of heavy blur dropshadows */
  --shadow-glow: 0 0 40px rgba(217, 119, 54, 0.15);
  --shadow-plate: 0 20px 40px -10px rgba(0, 0, 0, 0.5);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-dark);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* --- Typography Utilities --- */
.text-copper {
  color: var(--accent-copper);
}

.text-gold {
  color: var(--accent-gold);
}

.text-muted {
  color: var(--text-muted);
}

/* --- Pattern Backgrounds --- */
.bg-dot-pattern {
  background-image: radial-gradient(var(--border-subtle) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-grid-pattern {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* --- Common UI Components --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-highlight);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge.pulse::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--success-green);
  box-shadow: 0 0 10px var(--success-green);
  animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-copper);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label::before {
  content: '// ';
  color: var(--text-dim);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

/* Premium Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-copper);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 4px;
  /* Sharp corners instead of pills */
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(217, 119, 54, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  background: var(--accent-copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 119, 54, 0.3);
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Glass/Plate Card Base */
.plate-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-plate);
  transition: all var(--transition);
}

.plate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* ============================================
   A. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 54, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .container {
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title span.italic {
  font-family: var(--font-main);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
}

.hero-title span.accent {
  color: var(--accent-copper);
  position: relative;
  display: inline-block;
}

.hero-title span.accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(217, 119, 54, 0.2);
  z-index: -1;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-val span {
  color: var(--accent-copper);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .hero-stats-row {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-val {
    font-size: 1.5rem;
  }
}

/* ============================================
   B. PROBLEM (Bento Box Layout)
   ============================================ */
.problem-section {
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.bento-item:hover {
  border-color: var(--border-highlight);
}

.bento-item--large {
  grid-column: span 8;
}

.bento-item--small {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .bento-item--large {
    grid-column: span 12;
  }

  .bento-item--small {
    grid-column: span 6;
  }
}

@media (max-width: 500px) {
  .bento-item--small {
    grid-column: span 12;
  }
}

.bento-icon {
  margin-bottom: 24px;
  color: var(--text-dim);
}

.bento-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.bento-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.bento-item--large .bento-title {
  font-size: 1.5rem;
}

.bento-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-statement {
  grid-column: span 12;
  background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
  padding: 48px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-highlight);
  margin-top: 16px;
}

.problem-statement p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.problem-statement p span {
  color: var(--accent-copper);
}

/* ============================================
   C. FEATURES (Zig-Zag Offset Layout)
   ============================================ */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 120px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  max-width: 500px;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.visual-icon {
  width: 80px;
  height: 80px;
  color: var(--accent-copper);
  opacity: 0.8;
}

@media (max-width: 900px) {

  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
  }

  .feature-content,
  .feature-visual {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   D. FLOW (Line Connector)
   ============================================ */
.flow-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.flow-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: var(--border-subtle);
  z-index: 0;
}

.flow-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.flow-step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-copper);
  flex-shrink: 0;
}

.flow-step.active .flow-step-marker {
  border-color: var(--accent-copper);
  box-shadow: 0 0 20px rgba(217, 119, 54, 0.2);
}

.flow-step-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: var(--radius-md);
  flex: 1;
}

.flow-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.flow-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .flow-container::before {
    left: 20px;
  }

  .flow-step-marker {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .flow-step {
    gap: 24px;
  }

  .flow-step-content {
    padding: 24px;
  }
}

/* ============================================
   E. PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-copper);
  position: relative;
}

.price-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-copper);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

.plan-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-card.featured .plan-name {
  color: var(--accent-copper);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-main);
  margin-bottom: 8px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.plan-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card.featured .plan-features svg {
  color: var(--success-green);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 40px 24px;
  }
}

/* ============================================
   F. FAQ
   ============================================ */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-dim);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-copper);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-text {
  padding-bottom: 32px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-right: 40px;
}

/* ============================================
   G. FOOTER CTA & FOOTER
   ============================================ */
.cta-section {
  position: relative;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 54, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-title span {
  color: var(--accent-copper);
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  text-align: center;
  background: #000;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--border-highlight);
  font-family: var(--font-mono);
}

/* Sticky Mobile CTA */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 24, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar .btn-primary {
  width: 100%;
  max-width: 400px;
  padding: 14px 24px;
}

@media (min-width: 769px) {
  .sticky-bar {
    display: none;
  }
}

/* ============================================
   Z. MOCKUPS (Feature Visuals)
   ============================================ */
/* Common */
.mock-container {
  width: 100%;
  box-sizing: border-box;
  background: #121A26;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Feature 1: Before / After */
.mock1 {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.mock1-img {
  position: relative;
  width: 50%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}

.mock1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock1-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.mock1-before {
  background: rgba(0, 0, 0, 0.6);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mock1-after {
  background: rgba(217, 119, 54, 0.9);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 119, 54, 0.4);
}

.mock1-arrow {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.mock1-arrow svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .mock1 {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .mock1-img {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .mock1-arrow svg {
    transform: rotate(90deg);
  }
}

/* Feature 2: Message Proxy */
.mock2 {
  display: flex;
  gap: 16px;
  padding: 20px;
  align-items: stretch;
}

.mock2-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding-bottom: 16px;
}

.mock2-head {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  color: #F1F5F9;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock2-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock2-msg {
  max-width: 90%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #111;
}

.mock2-msg-l {
  background: #F1F5F9;
  align-self: flex-start;
  border-top-left-radius: 4px;
}

.mock2-msg-r {
  background: #D97736;
  color: #fff;
  align-self: flex-end;
  border-top-right-radius: 4px;
}

.mock2-msg-r.green {
  background: #10B981;
}

.mock2-msg-d {
  background: #334155;
  color: #fff;
}

.mock2-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.mock2-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 10;
}

.mock2-label.slate {
  background: #64748B;
}

.mock2-label.green {
  background: #10B981;
}

.mock2-arrow {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding: 0 4px;
}

.mock2-arrow svg {
  width: 28px;
  height: 28px;
  stroke: #D97736;
}

@media (max-width: 800px) {
  .mock2 {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .mock2-wrapper {
    width: 100%;
  }

  .mock2-arrow {
    flex-direction: row;
  }

  .mock2-arrow svg {
    transform: rotate(90deg);
  }
}

/* Feature 3: Success Fee */
.mock3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.mock3-row {
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock3-label {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}

.mock3-content {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mock3-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.mock3-text strong {
  color: #fff;
  font-size: 16px;
}

.mock3-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock3-other {
  background: rgba(255, 255, 255, 0.02);
}

.mock3-other .mock3-label {
  background: #334155;
}

.mock3-other .mock3-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.mock3-ours-wrap {
  position: relative;
}

.mock3-ours {
  background: rgba(217, 119, 54, 0.05);
  border-color: rgba(217, 119, 54, 0.3);
}

.mock3-ours .mock3-label {
  background: #D97736;
  color: #fff;
}

.mock3-ours .mock3-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.mock3-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #10B981;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  z-index: 10;
}

@media (max-width: 600px) {
  .mock3-row {
    flex-direction: column;
  }

  .mock3-label {
    width: 100%;
    padding: 8px;
  }

  .mock3-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .mock3-badge {
    right: 50%;
    transform: translateX(50%);
    top: -10px;
  }
}