:root {
      --ink: #1f2d2a;
      --forest: #17322d;
      --forest-2: #24453e;
      --sage: #78958a;
      --sage-soft: #dfe9e4;
      --cream: #f7f3ea;
      --paper: #fffdf8;
      --gold: #c7954b;
      --gold-soft: #efe1c8;
      --muted: #68736f;
      --line: rgba(23, 50, 45, 0.13);
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(23, 50, 45, 0.13);
      --shadow-soft: 0 14px 40px rgba(23, 50, 45, 0.08);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 15px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.75;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.02em; }
    section { scroll-margin-top: 96px; }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }
    .section { padding: 112px 0; }
    .section-sm { padding: 82px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--forest-2);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      width: 32px;
      height: 2px;
      content: "";
      background: var(--gold);
      border-radius: 999px;
    }
    .section-title {
      max-width: 820px;
      margin-bottom: 20px;
      font-size: clamp(2rem, 4.2vw, 3.55rem);
      color: var(--forest);
    }
    .section-lead {
      max-width: 760px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.08rem;
    }
    .center { text-align: center; }
    .center .section-title,
    .center .section-lead { margin-inline: auto; }

    .btn {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 800;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: var(--white);
      background: var(--forest);
      box-shadow: 0 14px 30px rgba(23, 50, 45, 0.22);
    }
    .btn-primary:hover { background: var(--forest-2); }
    .btn-gold {
      color: var(--forest);
      background: var(--gold-soft);
      border-color: rgba(199, 149, 75, .32);
    }
    .btn-gold:hover { background: #e7d3b2; }
    .btn-outline {
      color: var(--forest);
      background: rgba(255,255,255,.7);
      border-color: var(--line);
    }
    .btn-outline:hover { border-color: var(--forest); }
    .btn-arrow::after { content: "→"; font-size: 1.12em; }

    /* Header */
    .site-header {
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100%;
      border-bottom: 1px solid transparent;
      transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .site-header.is-scrolled {
      border-color: var(--line);
      background: rgba(255, 253, 248, .93);
      box-shadow: 0 10px 30px rgba(23, 50, 45, .07);
      backdrop-filter: blur(16px);
    }
    .nav-wrap {
      display: flex;
      min-height: 84px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--forest);
      font-weight: 900;
      line-height: 1.2;
    }
    .brand-logo {
      display: block;
      width: 62px;
      height: 58px;
      flex: 0 0 auto;
      object-fit: contain;
      object-position: center;
    }
    .brand-mark {
      display: grid;
      width: 43px;
      height: 43px;
      place-items: center;
      border-radius: 50%;
      color: var(--cream);
      background: var(--forest);
      font-family: Georgia, serif;
      font-size: 1.16rem;
    }
    .brand small {
      display: block;
      margin-top: 3px;
      color: var(--sage);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-size: .94rem;
      font-weight: 700;
    }
    .nav-links a:not(.btn) { color: #44534f; }
    .nav-links a:not(.btn):hover { color: var(--forest); }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--forest);
      background: rgba(255,255,255,.75);
      cursor: pointer;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 20px;
      height: 2px;
      content: "";
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-toggle span { position: relative; }
    .menu-toggle span::before { position: absolute; top: -6px; }
    .menu-toggle span::after { position: absolute; top: 6px; }
    .menu-toggle[aria-expanded="true"] span { background: transparent; }
    .menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 154px 0 96px;
      background:
        radial-gradient(circle at 86% 13%, rgba(199, 149, 75, .18), transparent 27%),
        radial-gradient(circle at 5% 75%, rgba(120, 149, 138, .18), transparent 28%),
        var(--cream);
    }
    .hero::after {
      position: absolute;
      right: -180px;
      bottom: -260px;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(23, 50, 45, .12);
      border-radius: 50%;
      content: "";
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 76px;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 26px;
      color: var(--forest-2);
      font-size: .92rem;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .hero-kicker::before {
      width: 48px;
      height: 1px;
      content: "";
      background: var(--gold);
    }
    .hero h1 {
      max-width: 720px;
      margin-bottom: 24px;
      color: var(--forest);
      font-size: clamp(3.2rem, 7.8vw, 6.55rem);
      font-weight: 900;
      line-height: 1.06;
    }
    .hero h1 span { color: var(--sage); }
    .hero-intro {
      max-width: 650px;
      margin-bottom: 34px;
      color: #4f5f5a;
      font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .hero-note {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
      color: var(--muted);
      font-size: .9rem;
    }
    .hero-note-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 7px rgba(199, 149, 75, .15);
    }
    .portrait-stage { position: relative; min-height: 620px; }
    .portrait-frame {
      position: absolute;
      inset: 18px 0 0 64px;
      overflow: hidden;
      border-radius: 180px 180px 28px 28px;
      background:
        linear-gradient(155deg, rgba(23,50,45,.05), rgba(120,149,138,.25)),
        #e5ebe7;
      box-shadow: var(--shadow);
    }
    .portrait-placeholder {
      display: grid;
      width: 100%;
      height: 100%;
      min-height: 610px;
      place-items: center;
      padding: 44px;
      text-align: center;
      color: var(--forest);
      background:
        linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.08)),
        repeating-linear-gradient(135deg, rgba(23,50,45,.035), rgba(23,50,45,.035) 1px, transparent 1px, transparent 18px);
    }
    .portrait-placeholder strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
    .portrait-placeholder span { color: var(--muted); font-size: .88rem; }
    .portrait-photo-shell { width: 100%; height: 100%; min-height: 610px; display: flex; align-items: end; justify-content: center; padding: 0 10px 0 10px; background: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.06)), repeating-linear-gradient(135deg, rgba(23,50,45,.035), rgba(23,50,45,.035) 1px, transparent 1px, transparent 18px); }
    .portrait-photo { display: block; max-width: 100%; max-height: 100%; height: auto; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 38px rgba(18,35,31,.18)); }
    .portrait-badge {
      position: absolute;
      z-index: 2;
      right: -12px;
      bottom: 30px;
      max-width: 230px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.38);
      border-radius: 18px;
      color: var(--white);
      background: rgba(23,50,45,.94);
      box-shadow: var(--shadow-soft);
    }
    .portrait-badge strong { display: block; margin-bottom: 6px; font-size: 1rem; }
    .portrait-badge span { color: rgba(255,255,255,.74); font-size: .84rem; }
    .portrait-quote {
      position: absolute;
      z-index: 2;
      top: 60px;
      left: 0;
      width: 180px;
      padding: 19px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,253,248,.92);
      box-shadow: var(--shadow-soft);
      font-family: Georgia, "Noto Serif TC", serif;
      color: var(--forest);
    }

    /* Trust strip */
    .trust-strip {
      position: relative;
      z-index: 4;
      margin-top: -28px;
    }
    .trust-panel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.96);
      box-shadow: var(--shadow-soft);
    }
    .trust-item {
      padding: 28px 24px;
      text-align: center;
    }
    .trust-item + .trust-item { border-left: 1px solid var(--line); }
    .trust-item strong {
      display: block;
      margin-bottom: 7px;
      color: var(--forest);
      font-size: clamp(1.7rem, 4vw, 2.55rem);
      line-height: 1;
    }
    .trust-item span { color: var(--muted); font-size: .9rem; font-weight: 700; }

    /* Challenge */
    .challenge-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .challenge-card {
      position: relative;
      min-height: 235px;
      padding: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }
    .challenge-card::after {
      position: absolute;
      right: -28px;
      bottom: -36px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      content: "";
      background: var(--sage-soft);
      opacity: .72;
    }
    .challenge-card span {
      display: inline-grid;
      width: 42px;
      height: 42px;
      margin-bottom: 22px;
      place-items: center;
      border-radius: 50%;
      color: var(--forest);
      background: var(--gold-soft);
      font-weight: 900;
    }
    .challenge-card h3 { margin-bottom: 12px; color: var(--forest); font-size: 1.16rem; }
    .challenge-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

    /* Definition */
    .definition-section { background: var(--forest); color: var(--white); }
    .definition-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      align-items: center;
      gap: 72px;
    }
    .definition-section .eyebrow,
    .definition-section .section-title { color: var(--white); }
    .definition-section .eyebrow::before { background: var(--gold); }
    .definition-section .section-lead { color: rgba(255,255,255,.68); }
    .definition-quote {
      padding: 38px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 100% 0%, rgba(199,149,75,.25), transparent 32%),
        rgba(255,255,255,.055);
    }
    .definition-quote blockquote {
      margin: 0 0 24px;
      font-family: Georgia, "Noto Serif TC", serif;
      font-size: clamp(1.75rem, 3.4vw, 2.9rem);
      line-height: 1.45;
    }
    .definition-quote p { margin-bottom: 0; color: rgba(255,255,255,.68); }
    .definition-list { display: grid; gap: 16px; margin-top: 36px; }
    .definition-list li {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      align-items: start;
      list-style: none;
      color: rgba(255,255,255,.82);
    }
    .definition-list b {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 50%;
      color: var(--forest);
      background: var(--gold-soft);
    }

    /* Three powers */
    .power-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px;
    }
    .power-card {
      position: relative;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }
    .power-number {
      position: absolute;
      top: 22px;
      right: 26px;
      color: rgba(23,50,45,.08);
      font-family: Georgia, serif;
      font-size: 4.6rem;
      font-weight: 700;
      line-height: 1;
    }
    .power-icon {
      display: grid;
      width: 58px;
      height: 58px;
      margin-bottom: 26px;
      place-items: center;
      border-radius: 20px;
      color: var(--forest);
      background: var(--sage-soft);
      font-size: 1.45rem;
      font-weight: 900;
    }
    .power-card:nth-child(2) .power-icon { background: var(--gold-soft); }
    .power-card:nth-child(3) .power-icon { color: var(--white); background: var(--forest); }
    .power-card h3 { margin-bottom: 8px; color: var(--forest); font-size: 1.55rem; }
    .power-tagline { margin-bottom: 15px; color: var(--sage); font-weight: 800; }
    .power-card p { color: var(--muted); }
    .power-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
    .power-card li {
      position: relative;
      padding: 7px 0 7px 22px;
      color: #4f5f5a;
      font-size: .92rem;
    }
    .power-card li::before {
      position: absolute;
      top: 15px;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      content: "";
      background: var(--gold);
    }
    .power-summary {
      max-width: 900px;
      margin: 42px auto 0;
      padding: 24px 30px;
      border-left: 4px solid var(--gold);
      border-radius: 0 16px 16px 0;
      color: var(--forest);
      background: var(--cream);
      font-family: Georgia, "Noto Serif TC", serif;
      font-size: 1.28rem;
      text-align: center;
    }

    /* Programs */
    .program-section { background: var(--cream); }
    .program-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .program-card {
      display: flex;
      min-height: 390px;
      flex-direction: column;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
    .program-time {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 22px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--forest);
      background: var(--sage-soft);
      font-size: .8rem;
      font-weight: 800;
    }
    .program-card h3 { margin-bottom: 12px; color: var(--forest); font-size: 1.26rem; }
    .program-card p { color: var(--muted); font-size: .92rem; }
    .program-card ul { margin: 15px 0 26px; padding: 0; list-style: none; }
    .program-card li { margin-bottom: 9px; color: #51615d; font-size: .88rem; }
    .program-card li::before { margin-right: 8px; content: "—"; color: var(--gold); }
    .program-card .text-link { margin-top: auto; color: var(--forest); font-weight: 900; }

    /* Services */
    .service-layout {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 24px;
      margin-top: 46px;
    }
    .service-main,
    .service-side {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
    }
    .service-main {
      min-height: 510px;
      padding: 52px;
      color: var(--white);
      background:
        linear-gradient(115deg, rgba(23,50,45,.98), rgba(36,69,62,.9)),
        var(--forest);
      box-shadow: var(--shadow);
    }
    .service-main::after {
      position: absolute;
      right: -120px;
      bottom: -180px;
      width: 430px;
      height: 430px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50%;
      content: "";
    }
    .service-main h3 { max-width: 600px; margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.5rem); }
    .service-main p { max-width: 650px; color: rgba(255,255,255,.72); }
    .service-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 13px;
      max-width: 640px;
      margin: 30px 0 34px;
    }
    .service-points span {
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 12px;
      background: rgba(255,255,255,.06);
      font-size: .9rem;
    }
    .service-side { display: grid; gap: 24px; }
    .service-mini {
      min-height: 243px;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--cream);
    }
    .service-mini:nth-child(2) { background: var(--sage-soft); }
    .service-mini h3 { margin-bottom: 14px; color: var(--forest); font-size: 1.5rem; }
    .service-mini p { margin-bottom: 20px; color: var(--muted); font-size: .92rem; }
    .service-mini a { color: var(--forest); font-weight: 900; }

    /* Cases */
    .case-section { background: #f2f6f3; }
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .case-card {
      display: flex;
      overflow: hidden;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }
    .case-image {
      position: relative;
      width: 100%;
      height: 245px;
      overflow: hidden;
      color: var(--forest);
      background:
        linear-gradient(140deg, rgba(223,233,228,.92), rgba(239,225,200,.85)),
        repeating-linear-gradient(45deg, rgba(23,50,45,.03), rgba(23,50,45,.03) 1px, transparent 1px, transparent 14px);
    }
    .case-image img {
      display: block;
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: cover;
      object-position: center center;
    }
    .case-image strong { display: block; margin-bottom: 8px; }
    .case-image span { color: var(--muted); font-size: .85rem; }
    .case-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
    .case-industry { margin-bottom: 12px; color: var(--sage); font-size: .82rem; font-weight: 900; letter-spacing: .1em; }
    .case-card h3 { min-height: 63px; margin-bottom: 16px; color: var(--forest); font-size: 1.3rem; }
    .case-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin: 20px 0;
    }
    .case-meta div {
      padding: 11px 8px;
      border-radius: 12px;
      background: var(--cream);
      text-align: center;
    }
    .case-meta strong { display: block; color: var(--forest); font-size: 1.06rem; }
    .case-meta span { color: var(--muted); font-size: .74rem; }
    .case-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
    .case-quote {
      margin-top: 18px;
      padding: 15px;
      border-left: 3px solid var(--gold);
      color: #65716e;
      background: #faf8f1;
      font-size: .84rem;
    }

    /* Story */
    .story-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      align-items: stretch;
      gap: 64px;
    }
    .story-photo {
      position: relative;
      min-height: 610px;
      overflow: hidden;
      border-radius: 28px 150px 28px 28px;
      background:
        linear-gradient(145deg, rgba(120,149,138,.24), rgba(199,149,75,.2)),
        var(--sage-soft);
      box-shadow: var(--shadow);
    }
    .story-photo .portrait-placeholder { min-height: 610px; }
    .story-image { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center center; display: block; }
    .story-stamp {
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: 150px;
      padding: 20px;
      border-radius: 50%;
      color: var(--cream);
      background: var(--forest);
      text-align: center;
      font-family: Georgia, serif;
      transform: rotate(-5deg);
    }
    .story-content { align-self: center; }
    .story-content p { color: var(--muted); }
    .story-content .highlight {
      margin: 30px 0;
      padding: 24px 26px;
      border-left: 4px solid var(--gold);
      color: var(--forest);
      background: var(--cream);
      font-family: Georgia, "Noto Serif TC", serif;
      font-size: 1.22rem;
    }

    /* Credentials */
    .credentials-section { background: var(--cream); }
    .credentials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 46px;
    }
    .credential-panel {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--white);
    }
    .credential-panel h3 { margin-bottom: 24px; color: var(--forest); font-size: 1.5rem; }
    .credential-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
    .credential-list li {
      position: relative;
      padding: 15px 16px 15px 46px;
      border-radius: 13px;
      color: #4b5a56;
      background: #f7f8f5;
      font-size: .93rem;
    }
    .credential-list li::before {
      position: absolute;
      top: 14px;
      left: 14px;
      display: grid;
      width: 24px;
      height: 24px;
      place-items: center;
      border-radius: 50%;
      content: "✓";
      color: var(--forest);
      background: var(--gold-soft);
      font-size: .75rem;
      font-weight: 900;
    }

    /* Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 48px;
    }
    .process-card {
      position: relative;
      padding: 28px 24px;
      border-top: 3px solid var(--gold);
      border-radius: 0 0 18px 18px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }
    .process-step {
      margin-bottom: 18px;
      color: var(--sage);
      font-size: .8rem;
      font-weight: 900;
      letter-spacing: .12em;
    }
    .process-card h3 { margin-bottom: 12px; color: var(--forest); font-size: 1.22rem; }
    .process-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
    .process-card:not(:last-child)::after {
      position: absolute;
      top: 50%;
      right: -14px;
      z-index: 2;
      width: 28px;
      height: 28px;
      content: "→";
      color: var(--gold);
      font-weight: 900;
      text-align: center;
    }

    /* CTA */
    .cta-section { padding-top: 74px; padding-bottom: 110px; }
    .cta-shell {
      position: relative;
      overflow: hidden;
      padding: 66px;
      border-radius: 36px;
      color: var(--white);
      background:
        radial-gradient(circle at 92% 18%, rgba(199,149,75,.33), transparent 28%),
        linear-gradient(130deg, var(--forest), #294a43);
      box-shadow: var(--shadow);
    }
    .cta-shell::before {
      position: absolute;
      top: -180px;
      right: -80px;
      width: 380px;
      height: 380px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      content: "";
    }
    .cta-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
      gap: 56px;
    }
    .cta-shell h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.4vw, 4.15rem); }
    .cta-shell p { color: rgba(255,255,255,.72); }
    .cta-contact {
      display: grid;
      gap: 12px;
      margin-top: 30px;
    }
    .cta-contact a { width: fit-content; color: rgba(255,255,255,.88); }
    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 24px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(12px);
    }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 800; }
    #wu-mindful-homepage .contact-form .field input,
    #wu-mindful-homepage .contact-form .field select,
    #wu-mindful-homepage .contact-form .field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 12px;
      outline: none;
      color: #fff !important;
      -webkit-text-fill-color: #fff !important;
      caret-color: #fff;
      background: rgba(255,255,255,.08);
    }
    .field input,
    .field select { height: 48px; padding: 0 14px; }
    .field textarea { min-height: 120px; padding: 14px; resize: vertical; }
    #wu-mindful-homepage .contact-form .field input::placeholder,
    #wu-mindful-homepage .contact-form .field textarea::placeholder {
      color: rgba(255,255,255,.56) !important;
      -webkit-text-fill-color: rgba(255,255,255,.56) !important;
      opacity: 1;
    }
    #wu-mindful-homepage .contact-form .field select option {
      color: var(--ink);
      -webkit-text-fill-color: var(--ink);
      background: #fff;
    }
    #wu-mindful-homepage .contact-form .field input:-webkit-autofill,
    #wu-mindful-homepage .contact-form .field input:-webkit-autofill:hover,
    #wu-mindful-homepage .contact-form .field input:-webkit-autofill:focus,
    #wu-mindful-homepage .contact-form .field textarea:-webkit-autofill,
    #wu-mindful-homepage .contact-form .field select:-webkit-autofill {
      -webkit-text-fill-color: #fff !important;
      caret-color: #fff;
      box-shadow: 0 0 0 1000px rgba(255,255,255,.08) inset;
      transition: background-color 9999s ease-out 0s;
    }
    .form-note { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.55)!important; font-size: .75rem; }
    .form-submit { grid-column: 1 / -1; width: 100%; border: 0; }
    .form-status {
      display: none;
      grid-column: 1 / -1;
      margin: 0;
      padding: 12px 14px;
      border-radius: 10px;
      color: #17322d!important;
      background: var(--gold-soft);
      font-size: .86rem;
    }

    /* HubSpot 培訓需求表單：使用獨立淺色表面，確保內嵌表單與成功訊息具高對比 */
    #wu-mindful-homepage .hubspot-form-shell {
      position: relative;
      min-width: 0;
      padding: 30px;
      border: 1px solid rgba(23, 50, 45, .12);
      border-radius: 30px;
      color: var(--ink);
      background: #fffdf8 !important;
      box-shadow: 0 24px 56px rgba(8, 29, 25, .22);
      isolation: isolate;
    }
    #wu-mindful-homepage .hubspot-form-intro {
      margin-bottom: 22px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(23, 50, 45, .12);
    }
    #wu-mindful-homepage .hubspot-form-intro span {
      display: block;
      margin-bottom: 6px;
      color: var(--sage);
      font-size: .76rem;
      font-weight: 900;
      letter-spacing: .14em;
    }
    #wu-mindful-homepage .hubspot-form-intro h3 {
      margin-bottom: 8px;
      color: var(--forest) !important;
      font-size: clamp(1.55rem, 2.4vw, 2rem);
    }
    #wu-mindful-homepage .hubspot-form-intro p {
      margin: 0;
      color: #5d6b67 !important;
      font-size: .94rem;
    }
    #wu-mindful-homepage .hubspot-form-stage {
      position: relative;
      min-height: 650px;
      overflow: hidden;
      border-radius: 18px;
      color-scheme: light;
      background: #ffffff !important;
      transition: min-height .25s ease;
    }
    #wu-mindful-homepage .hubspot-form-stage.is-loaded {
      min-height: 0;
      overflow: visible;
    }
    #wu-mindful-homepage .hubspot-form-shell .hs-form-frame {
      position: relative;
      z-index: 2;
      width: 100%;
      min-height: 650px;
      color-scheme: light;
      background: #ffffff !important;
    }
    #wu-mindful-homepage .hubspot-form-stage.is-loaded .hs-form-frame {
      min-height: 0;
    }
    #wu-mindful-homepage .hubspot-form-shell iframe {
      display: block;
      width: 100% !important;
      min-height: 650px;
      border: 0 !important;
      border-radius: 14px;
      color-scheme: light;
      background: #ffffff !important;
    }
    #wu-mindful-homepage .hubspot-form-stage.is-loaded iframe {
      min-height: 0;
    }
    #wu-mindful-homepage .hubspot-form-loading {
      position: absolute;
      inset: 0;
      z-index: 4;
      display: flex;
      min-height: 260px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #53635e;
      background: #ffffff;
      font-size: .92rem;
      transition: opacity .22s ease, visibility .22s ease;
    }
    #wu-mindful-homepage .hubspot-form-stage.is-loaded .hubspot-form-loading {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }
    #wu-mindful-homepage .hubspot-spinner {
      width: 22px;
      height: 22px;
      border: 3px solid #dfe8e4;
      border-top-color: var(--forest);
      border-radius: 50%;
      animation: wu-hubspot-spin .8s linear infinite;
    }
    @keyframes wu-hubspot-spin { to { transform: rotate(360deg); } }
    #wu-mindful-homepage .hubspot-form-fallback {
      position: relative;
      z-index: 5;
      padding: 30px;
      border: 1px solid rgba(23, 50, 45, .12);
      border-radius: 16px;
      color: var(--forest);
      background: #f7f3ea;
      text-align: center;
    }
    #wu-mindful-homepage .hubspot-form-fallback p {
      margin-bottom: 18px;
      color: #53635e !important;
    }
    #wu-mindful-homepage .hubspot-form-message {
      margin: 0;
      padding: 22px;
      border: 1px solid rgba(23, 50, 45, .12);
      border-radius: 16px;
      color: var(--forest) !important;
      background: #ffffff !important;
    }
    /* Footer */
    .site-footer {
      padding: 38px 0;
      color: rgba(255,255,255,.72);
      background: #10241f;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 30px;
    }
    .footer-brand { color: var(--white); font-size: 1.2rem; font-weight: 900; }
    .footer-brand span { display: block; margin-top: 6px; color: rgba(255,255,255,.58); font-size: .82rem; font-weight: 500; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: .85rem; }
    .footer-copy { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }

    .line-float {
      position: fixed;
      z-index: 999;
      right: 24px;
      bottom: 24px;
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: #06c755;
      box-shadow: 0 16px 35px rgba(6,199,85,.28);
      font-size: .74rem;
      font-weight: 900;
    }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1080px) {
      .nav-links { gap: 17px; font-size: .88rem; }
      .hero-grid { gap: 40px; }
      .challenge-grid, .program-grid { grid-template-columns: repeat(2, 1fr); }
      .service-layout { grid-template-columns: 1fr; }
      .service-side { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .section { padding: 86px 0; }
      .nav-links {
        position: fixed;
        inset: 84px 18px auto;
        display: none;
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255,253,248,.98);
        box-shadow: var(--shadow);
      }
      .nav-links.is-open { display: grid; }
      .nav-links .btn { width: 100%; }
      .menu-toggle { display: inline-flex; }
      .hero { padding-top: 126px; }
      .hero-grid,
      .definition-grid,
      .story-grid,
      .cta-grid { grid-template-columns: 1fr; }
      .portrait-stage { min-height: 510px; margin-top: 12px; }
      .portrait-frame { inset: 10px 26px 0 48px; }
      .portrait-placeholder { min-height: 500px; }
      .portrait-photo-shell { min-height: 500px; }
      .portrait-badge { right: 8px; bottom: 12px; }
      .portrait-quote { top: 42px; }
      .trust-panel { grid-template-columns: repeat(3, 1fr); }
      .power-grid,
      .case-grid,
      .process-grid { grid-template-columns: 1fr; }
      .case-image { height: 280px; }
      .process-card:not(:last-child)::after { display: none; }
      .credentials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }
    }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 28px), var(--container)); }
      .brand { gap: 8px; }
      .brand-logo { width: 54px; height: 51px; }
      .hero { padding-bottom: 74px; }
      .hero h1 { font-size: clamp(2.85rem, 15vw, 4.35rem); }
      .hero-actions { display: grid; }
      .hero-actions .btn { width: 100%; }
      .portrait-stage { min-height: 445px; }
      .portrait-frame { inset: 0 10px 0 28px; }
      .portrait-placeholder { min-height: 435px; padding: 28px; }
      .portrait-photo-shell { min-height: 435px; padding: 0 8px; }
      .portrait-quote { left: 0; width: 146px; font-size: .88rem; }
      .portrait-badge { max-width: 190px; padding: 17px; }
      .trust-panel,
      .challenge-grid,
      .program-grid,
      .service-side,
      .service-points { grid-template-columns: 1fr; }
      .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
      .service-main { padding: 34px 26px; }
      .case-image { height: 220px; }
      .story-photo { min-height: 460px; }
      .story-photo .portrait-placeholder { min-height: 460px; }
      .story-image { min-height: 460px; }
      .cta-shell { padding: 38px 22px; border-radius: 28px; }
      .contact-form { grid-template-columns: 1fr; padding: 20px; }
      #wu-mindful-homepage .hubspot-form-shell { padding: 18px; border-radius: 22px; }
      #wu-mindful-homepage .hubspot-form-stage,
      #wu-mindful-homepage .hubspot-form-shell .hs-form-frame,
      #wu-mindful-homepage .hubspot-form-shell iframe { min-height: 760px; }
      #wu-mindful-homepage .hubspot-form-stage.is-loaded,
      #wu-mindful-homepage .hubspot-form-stage.is-loaded .hs-form-frame,
      #wu-mindful-homepage .hubspot-form-stage.is-loaded iframe { min-height: 0; }
      .field.full, .form-note, .form-submit, .form-status { grid-column: 1; }
      .line-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
    }

/* WordPress 相容性 */
body.wu-mindful-template {
  margin: 0;
  background: var(--paper);
}
body.wu-mindful-template.admin-bar .site-header {
  top: 32px;
}
#wu-mindful-homepage {
  min-height: 100vh;
  overflow-x: clip;
}
#wu-mindful-homepage .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 782px) {
  body.wu-mindful-template.admin-bar .site-header {
    top: 46px;
  }
}
