      .page-hero::before {
        content: "";
        position: absolute;
        top: -100px; right: -100px;
        width: 500px; height: 500px;
        background: rgba(22, 164, 233, 0.04);
        border-radius: 50%;
      }

      /* Advantage */
      .advantage-section { padding: 80px 0 100px; }
      .advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
      .advantage-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
      .advantage-card { background: #ffffff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
      .ac-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
      .ac-item:last-child { border-bottom: none; }
      .ac-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
      .ac-icon svg { width: 20px; height: 20px; color: var(--blue); }
      .ac-item h3 { font-family: "Tinos", serif; font-size: 15px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 2px; }
      .ac-item p { font-size: 13px; color: var(--text-secondary); font-weight: 300; }

      /* Awards */
      .awards-section { padding: 100px 0; }
      .awards-header { text-align: center; max-width: 550px; margin: 0 auto 48px; }
      .awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
      .aw-card { background: #ffffff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s; }
      .aw-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15, 23, 41, 0.06); }
      .aw-year { font-family: "Tinos", serif; font-size: 32px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); margin-bottom: 4px; }
      .aw-desc { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

      /* History */
      .history-section { padding: 100px 0; }
      .history-header { text-align: center; max-width: 500px; margin: 0 auto 60px; }
      .timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 48px; }
      .timeline::before { content: ""; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--blue); border-radius: 2px; opacity: 0.3; }
      .tl-item { position: relative; margin-bottom: 36px; padding: 24px 28px; background: #ffffff; border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s; }
      .tl-item:hover { box-shadow: 0 12px 40px rgba(15, 23, 41, 0.06); transform: translateX(6px); }
      .tl-item::before { content: ""; position: absolute; left: -40px; top: 28px; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; }
      .tl-year { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 6px; }
      .tl-item h3 { font-family: "Tinos", serif; font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px; }
      .tl-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

      /* Feature */
      .feature-section { padding: 100px 0; }
      .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
      .feature-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 20px; background: var(--blue-light); }
      .feature-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 20px; }
      .feature-placeholder { background: var(--blue-light); border-radius: 20px; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
      .feature-placeholder svg { width: 48px; height: 48px; color: var(--blue); opacity: 0.2; }
      .feature-placeholder p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
      .feature-text h3 { font-family: "Tinos", serif; font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
      .feature-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }

      /* CTA override */
      .big-cta p { max-width: 460px; margin-left: auto; margin-right: auto; }

      @media (max-width: 768px) {
        .advantage-grid, .feature-grid { grid-template-columns: 1fr; }
        .awards-grid { grid-template-columns: repeat(2, 1fr); }
      }
