


/* 套餐卡 */
    .plans-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:24px;
      align-items:stretch;
    }

    .plan-card{
      position:relative;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,243,.95));
      border:1px solid rgba(200,171,114,.18);
      border-radius: var(--radius-xl);
      padding: 30px 28px 26px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }

    .plan-card::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:6px;
      background: linear-gradient(90deg, #d8c19a, #f0e3c8, #c6a874);
    }

    .plan-card.featured{
      transform: translateY(-8px);
      border-color: rgba(200,171,114,.34);
      box-shadow: 0 20px 50px rgba(77,58,40,.12);
    }

    .badge{
      position:absolute;
      top:18px;
      right:18px;
      padding:7px 12px;
      border-radius:999px;
      background: #f4ebdc;
      color: var(--gold-deep);
      font-size:13px;
      font-weight:700;
      border:1px solid rgba(200,171,114,.25);
    }

    .plan-name{
      margin:8px 0 12px;
      font-size:26px;
      line-height:1.3;
      font-weight:700;
    }

    .plan-subtitle{
      color:var(--muted);
      font-size:15px;
      margin-bottom:18px;
      min-height:48px;
    }

    .plan-media{
        margin-bottom: 12px;
        aspect-ratio: 3/4;
        overflow: hidden;
        border-radius: 5px;
        
    }
    .plan-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position:center;
    }

    .price{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin-bottom:16px;
    }

    .price .currency{
      font-size:18px;
      color:var(--gold-deep);
      font-weight:700;
    }

    .price .amount{
      font-size:42px;
      line-height:1;
      font-weight:800;
      color:var(--text);
      letter-spacing:-0.02em;
    }

    .plan-meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:22px;
    }

    .meta-chip{
      padding:8px 12px;
      background:#fbf7f0;
      border:1px solid var(--line);
      border-radius:999px;
      font-size:14px;
      color:var(--muted);
    }

    .plan-list{
      margin:0;
      padding-left:1.1em;
    }

    .plan-list li{
      margin:8px 0;
    }

    /* 重要規則 */
    .rules-box{
      background: linear-gradient(180deg, #fffaf3, #f5eee4);
      border:1px solid #e4d8c8;
      border-radius: var(--radius-xl);
      padding: 34px 34px;
      box-shadow: var(--shadow);
    }

    .rules-box h3{
      margin:0 0 18px;
      font-size:26px;
    }

    .rules-list{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px 24px;
      margin:0;
      padding:0;
      list-style:none;
    }

    .rules-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 16px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(200,171,114,.14);
      border-radius:16px;
    }

    .rules-list li::before{
      content:"•";
      color:var(--gold-deep);
      font-weight:800;
      font-size:20px;
      line-height:1;
      margin-top:1px;
    }

    /* Upsell */
    .upsell-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:24px;
    }

    .upsell-card{
      background: var(--card);
      border:1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .upsell-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      margin-bottom:18px;
    }

    .upsell-title{
      margin:0 0 6px;
      font-size:24px;
      line-height:1.3;
    }

    .upsell-price{
      white-space:nowrap;
      font-size:18px;
      font-weight:800;
      color:var(--gold-deep);
      padding:8px 12px;
      background:#faf4ea;
      border:1px solid #eadcc8;
      border-radius:999px;
    }

    .upsell-card ul{
      margin:0;
      padding-left:1.1em;
    }

    .upsell-card li{
      margin:8px 0;
    }

    /* Steps */
    .steps-grid{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:18px;
    }

    .step-card{
      position:relative;
      background: rgba(255,255,255,.8);
      border:1px solid var(--line);
      border-radius: 22px;
      padding: 26px 20px;
      box-shadow: var(--shadow);
      min-height: 180px;
    }

    .step-no{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:linear-gradient(180deg, #d8be91, #bea06d);
      color:#fff;
      font-weight:800;
      margin-bottom:18px;
      box-shadow:0 8px 18px rgba(190,160,109,.24);
    }

    .step-card h4{
      margin:0 0 8px;
      font-size:18px;
    }

    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }

    /* info cards */
    .info-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:24px;
    }

    .info-card{
      background: rgba(255,255,255,.82);
      border:1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .info-card h3{
      margin:0 0 14px;
      font-size:24px;
      line-height:1.3;
    }

    .info-card p{
      margin:0 0 10px;
      color:var(--muted);
    }

    .info-card ul{
      margin:0;
      padding-left:1.1em;
    }

    .info-card li{
      margin:8px 0;
    }

    .price-note{
      display:inline-block;
      margin-top:10px;
      padding:8px 12px;
      background:#faf4ea;
      border:1px solid #eadcc8;
      border-radius:999px;
      color:var(--gold-deep);
      font-size:14px;
      font-weight:700;
    }

    .highlight-box{
      margin-top:14px;
      padding:16px 18px;
      background:#fff8ee;
      border:1px solid #eadbc6;
      border-radius:16px;
      color:var(--text);
      font-weight:600;
    }

    

    /* Intro */
    .intro-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: start;
    }

    .intro-text h2 {
      font-size: clamp(2rem, 3.2vw, 3.2rem);
      margin-bottom: 20px;
    }

    .intro-text p:not(.section-label) {
      color: var(--text-light);
      max-width: 660px;
    }

    .intro-cards {
      display: grid;
      gap: 18px;
    }

    .mini-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,245,0.96));
      border: 1px solid rgba(233, 194, 164, 0.24);
      border-radius: var(--radius-md);
      padding: 24px 22px;
      box-shadow: var(--shadow-sm);
    }

    .mini-card h3 {
      color: #564239;
    }

    .mini-card p {
      color: var(--text-light);
      margin-bottom: 0;
    }

    





/* Blog */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,247,242,0.96));
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(233, 194, 164, 0.22);
    }

    .blog-card > a {
      display: block;
      /* overflow: hidden; */
      aspect-ratio: 4 / 3;
    }

    .blog-card > a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .blog-body {
      padding: 22px 22px 24px;
    }

    .blog-body h3 {
      font-size: 1.24rem;
      margin-bottom: 12px;
    }

    .blog-body h3 a:hover {
      color: var(--gold-dark);
    }

    .blog-body p {
      color: var(--text-light);
      margin-bottom: 0;
    }

    /* CTA */
    .cta-section {
      background:
        linear-gradient(180deg, #fff4eb 0%, #fff9f3 100%);
    }

    .cta-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 26px;
      padding: 54px 48px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255, 238, 225, 0.95) 0%, rgba(248, 228, 205, 0.98) 48%, rgba(255, 245, 233, 0.96) 100%);
      color: var(--text);
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(233, 194, 164, 0.24);
      position: relative;
      overflow: hidden;
    }

    .cta-box::after {
      content: "";
      position: absolute;
      top: -60px;
      right: -40px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.28);
      filter: blur(4px);
    }

    .cta-text {
      position: relative;
      z-index: 1;
    }

    .cta-text h2 {
      margin-bottom: 16px;
      font-size: clamp(2rem, 3vw, 3rem);
    }

    .cta-text p:not(.section-label) {
      max-width: 680px;
      color: var(--text-light);
      margin-bottom: 0;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }



    /* Responsive */
    @media (max-width: 1180px) {
      .plans-grid,      
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      
      .info-grid{
        grid-template-columns: 1fr;
      }

      .upsell-grid{
        grid-template-columns: 1fr;
      }

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

      .cta-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 980px) {


      .intro-grid{
        grid-template-columns: 1fr;
      }

    }

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


      .rules-list{
        grid-template-columns: 1fr;
      }

      .steps-grid{
        grid-template-columns: 1fr;
      }

      .plan-name{
        font-size:23px;
      }

      .price .amount{
        font-size:36px;
      }

      .upsell-top{
        flex-direction:column;
        align-items:flex-start;
      }


    }

    @media (max-width: 560px) {


    }