
 .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 16px 72px;
  }

  .container {
    width: 100%;
    /*max-width: 1750px;*/
 }

  /* BADGE */
  .brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeDown 0.5s ease both;
  }

  /* HERO */
  .hero {
    margin-bottom: 8px;
    animation: fadeDown 0.55s ease both 0.08s;
  }

  .hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 2.5vw, 18px);
    color: #666666;
    line-height: 1.75;
    /*max-width: 540px;*/
  }

  /* META */
  .meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #888888;
    margin: 14px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    animation: fadeDown 0.55s ease both 0.12s;
  }

  .meta i { margin-right: 5px; color: #aaaaaa; }

  /* DIVIDER */
  .divider {
    height: 1px;
    background: #e0ddd6;
    margin-bottom: 24px;
    animation: scaleX 0.7s ease both 0.18s;
    transform-origin: left;
  }

  /* ACCORDION CARD */
  .card {
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
  }

  .card.visible { opacity: 1; transform: translateY(0); }
  .card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }

  .card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    background: #faf9f7;
    border-bottom: 1px solid #e8e6e0;
    transition: background 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }

  .card-head:hover { background: #f2f0ec; }
  .card-head:active { background: #eceae4; }

  /* ICON */
  .ico {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    flex-shrink: 0;
  }

  .ic1  { background: #111111; }
  .ic2  { background: #1a4d7a; }
  .ic3  { background: #2d6a4f; }
  .ic4  { background: #7a3b1a; }
  .ic5  { background: #6b2080; }
  .ic6  { background: #1a5c5c; }
  .ic7  { background: #4a4a1a; }
  .ic8  { background: #8b1a1a; }
  .ic9  { background: #1a3d6b; }
  .ic10 { background: #3d1a6b; }
  .ic11 { background: #1a6b3d; }
  .ic12 { background: #6b4a1a; }
  .ic13 { background: #111111; }
  
  .ico-1 { background: #111111; }
  .ico-2 { background: #1a6b4a; }
  .ico-3 { background: #1a3d6b; }
  .ico-4 { background: #6b2080; }
  .ico-5 { background: #b03020; }

  /* CARD TITLE */
  .card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 2.8vw, 29px);
    font-weight: 600;
    color: #111111;
    flex: 1;
    line-height: 1.3;
    margin: 0px;
  }

  /* CHEVRON */
  .chevron {
    font-size: 13px;
    color: #aaaaaa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
  }

  .card.open .chevron { transform: rotate(180deg); }

  /* BODY */
  .card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0px !important;
  }

  .card.open .card-body { max-height: 800px; }

  .card-body-inner { padding: 18px 20px 22px; }

  .card-body-inner p {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 2.4vw, 18px);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .card-body-inner p:last-child { margin-bottom: 0; }

  /* LIST */
  .pp-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 10px;
  }

  .pp-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 2.4vw, 18px);
    color: #555555;
    line-height: 1.75;
    padding: 4px 0 4px 22px;
    position: relative;
  }

  .pp-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111111;
  }

  /* HIGHLIGHT BADGE */
  .badge-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-top: 8px;
    border: 1px solid;
  }

  .badge-warning {
    background: #fff8ec;
    color: #7a4f00;
    border-color: #f0d090;
  }

  .badge-info {
    background: #eaf3ff;
    color: #1a3d6b;
    border-color: #b0ccf0;
  }

  .badge-safe {
    background: #eaf7f2;
    color: #1a6b4a;
    border-color: #c0e8d8;
  }

  /* CONTACT BLOCK */
  .contact-block {
    background: #faf9f7;
    border: 1px solid #e8e6e0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 10px;
  }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 2.4vw, 18px);
    color: #444444;
    line-height: 1.6;
  }

  .contact-row i {
    color: #888888;
    font-size: 16px;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
  }

  .contact-row a { color: #1a3d6b; text-decoration: none; }
  .contact-row a:hover { text-decoration: underline; }

  /* FOOTER */
  .pp-footer {
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 14px;
    background: #111111;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.5s ease both 0.5s;
  }

  .footer-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
  }

  .footer-text p:first-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }

  .footer-text p:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
  }

  .footer-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
  }

  .footer-text a:hover { opacity: 0.8; }

  /* ANIMATIONS */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes scaleX {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
  }

  /* RESPONSIVE */
  @media (max-width: 480px) {
    .page { padding: 24px 12px 48px; }
    .card-head { padding: 14px 16px; gap: 12px; }
    .card-body-inner { padding: 14px 16px 18px; }
    .pp-footer { padding: 16px 18px; gap: 12px; }
    .ico { width: 36px; height: 36px; min-width: 36px; font-size: 15px; border-radius: 9px; }
    .brand-badge { font-size: 11px; padding: 6px 13px; }
  }

  @media (max-width: 360px) {
    .page { padding: 20px 10px 40px; }
    .card-head { padding: 12px 14px; }
    .card-body-inner { padding: 12px 14px 16px; }
    .pp-footer { padding: 14px 16px; }
  }

  @media (min-width: 768px) {
    .page { padding: 60px 24px 80px; }
  }

  @media (min-width: 1024px) {
    .page { padding: 72px 32px 96px; }
  }

  /* PRINT */
  @media print {
    body { background: #fff; }
    .page { padding: 0; }
    .card { opacity: 1 !important; transform: none !important; border: 1px solid #ddd; margin-bottom: 16px; break-inside: avoid; }
    .card-body { max-height: none !important; }
    .card-head { background: #f5f5f5 !important; }
    .chevron { display: none; }
    .pp-footer { background: #111 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .brand-badge, .ico { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  }