/* ============================================================
   MPA — Homepage-only styles
   Refactored from the original combined stylesheet.
============================================================ */

/* Base styles */

.hero {
    min-height: 600px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.23), transparent 30%),
      linear-gradient(130deg, #8d0b0e 0%, #c93e44 58%, #e0676c 100%);
    color: #fff;
  }
  
  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
  }
  
  .hero::before {
    width: 460px;
    height: 460px;
    right: -120px;
    top: -100px;
  }
  
  .hero::after {
    width: 260px;
    height: 260px;
    right: 80px;
    bottom: -140px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    padding: 90px 0;
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: clamp(44px, 6vw, 50px);
    line-height: 1.02;
    margin: 14px 0 22px;
    max-width: 760px;
  }
  
  .hero p {
    max-width: 620px;
    font-size: 18px;
    color: rgba(255,255,255,.88);
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
  }
  
  .hero-card {
    background: rgba(255,255,255,.95);
    color: var(--text);
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(74,0,4,.3);
  }
  
  .hero-card h3 {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 24px;
  }
  
  .hero-card p {
    color: var(--muted);
    font-size: 15px;
  }
  
  .mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
  }
  
  .mini-stat {
    background: #fff5f4;
    border-radius: 16px;
    padding: 18px;
  }
  
  .mini-stat strong {
    display: block;
    color: var(--brand-dark);
    font-size: 35px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  
  .about-visual {
    min-height: 470px;
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(141,11,14,.05), rgba(200,61,67,.18)),
      repeating-linear-gradient(45deg, #fff 0 18px, #fff6f3 18px 36px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .about-visual .mark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }
  
  .about-visual .mark img {
    width: min(230px, 62%);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(89,0,4,.14);
  }
  
  .about-visual .caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(255,255,255,.92);
    padding: 18px 20px;
    border-radius: 16px;
    font-weight: 700;
  }
  
  .values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
  }
  
  .value-card {
    border: 1px solid #f0d8d9;
    border-radius: 18px;
    padding: 22px;
    background: #fff;
  }
  
  .value-card h3 {
    margin: 12px 0 6px;
    color: var(--brand-dark);
  }
  
  .icon-badge {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff0ef;
    color: var(--brand);
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .product-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #f1d6d7;
    background: #fff;
    box-shadow: 0 14px 35px rgba(80,0,0,.06);
  }
  
  .product-art {
    height: 180px;
    background: linear-gradient(135deg, #f7d1d2, #fff7f4);
    display: grid;
    place-items: center;
    font-size: 48px;
  }
  
  .product-card .body {
    padding: 22px;
  }
  
  .product-card h3 {
    margin: 0 0 8px;
    color: var(--brand-dark);
  }
  
  .product-card p {
    color: var(--muted);
    margin: 0;
  }
  
  .red-eyebrow {
    color: var(--brand-dark);
  }
  
  .card-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff0ef;
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .home-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  
  .home-intro-grid h2 {
    max-width: 520px;
    margin: 10px 0 0;
    font-size: clamp(34px, 4.5vw, 40px);
    line-height: 1.1;
  }
  
  .home-intro-copy {
    padding-top: 2px;
  }
  
  .home-intro-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
  }
  
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 54px;
  }
  
  .trust-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #f0d8d9;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(80, 0, 0, 0.05);
    transition: transform 0.22s ease,
      box-shadow 0.22s ease;
  }
  
  .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(80, 0, 0, 0.09);
  }
  
  .trust-number {
    margin-bottom: 30px;
    color: var(--brand);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.12em;
  }
  
  .trust-card h3 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 23px;
  }
  
  .trust-card p {
    margin: 0;
    color: var(--muted);
  }
  
  .trust-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(200, 61, 67, 0.08);
  }
  
  .collaboration-panel {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 60px;
    align-items: center;
    padding: 52px;
    border: 1px solid #f0d8d9;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  
  .collaboration-copy {
    max-width: 710px;
  }
  
  .collaboration-copy h2 {
    margin: 10px 0 18px;
    font-size: clamp(32px, 4vw, 34px);
    line-height: 1.12;
  }
  
  .collaboration-copy p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
  }
  
  .collaboration-action {
    display: grid;
    justify-items: start;
    gap: 18px;
    padding-left: 40px;
    border-left: 1px solid #edd1d3;
  }
  
  .collaboration-action span {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.45;
  }
  
  .product-symbol {
    color: rgba(168, 15, 19, 0.75);
    font-size: 38px;
    font-weight: 850;
    letter-spacing: -0.04em;
  }
  
  /* Responsive styles */
  
  @media (max-width: 980px) {
  
    .home-intro-grid,
    .collaboration-panel {
      grid-template-columns: 1fr;
    }
  
    .home-intro-grid {
      gap: 30px;
    }
  
    .trust-grid {
      grid-template-columns: 1fr;
    }
  
    .collaboration-panel {
      gap: 34px;
    }
  
    .collaboration-action {
      padding-left: 0;
      padding-top: 28px;
      border-left: 0;
      border-top: 1px solid #edd1d3;
    }
  
    .hero-grid,
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-card {
      max-width: 640px;
    }
  
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .values {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 760px) {
  
    .home-introduction {
      padding-top: 72px;
    }
  
    .collaboration-panel {
      padding: 30px 24px;
      border-radius: 22px;
    }
  
    .trust-card {
      min-height: auto;
      padding: 25px;
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero-grid {
      padding: 72px 0;
      gap: 35px;
    }
  
    .hero h1 {
      font-size: 46px;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  }