.excel-tool {
    --bg:        #faf8f3;
    --bg-card:   #ffffff;
    --bg-soft:   #f3f0e9;
    --bg-deep:   #1a1f2c;
    --ink:       #1a1f2c;
    --ink-soft:  #3d4452;
    --ink-mid:   #6b7280;
    --ink-muted: #9ca3af;
    --line:      #e5e0d4;
    --line-soft: #efebe0;

    --accent:        #d94a2c;
    --accent-deep:   #a8331c;
    --accent-soft:   #fbe9e2;
    --accent-bg:     #fef5f1;

    --good:          #2d7d56;
    --good-bg:       #e7f3ed;

    --font: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  }

.excel-tool * { box-sizing: border-box; margin: 0; padding: 0; }
.excel-tool html { scroll-behavior: smooth; }
.excel-tool body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.85;
    font-size: 16px;
    font-feature-settings: "palt";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

.excel-tool .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
.excel-tool .wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; position: relative; }

.excel-tool .icon { width: 28px; height: 28px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.excel-tool .icon-lg { width: 40px; height: 40px; stroke-width: 1.4; }
.excel-tool .icon-sm { width: 18px; height: 18px; stroke-width: 1.8; }

  /* ===== Header ===== */
.excel-tool header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
  }
.excel-tool .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    max-width: 1280px; margin: 0 auto;
  }
.excel-tool .brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 17px; letter-spacing: 0.02em; }
.excel-tool .brand-mark {
    width: 32px; height: 32px;
    background: var(--ink); color: #fff;
    display: grid; place-items: center;
    font-size: 14px; font-weight: 900;
    border-radius: 6px;
  }
.excel-tool .nav-cta {
    font-size: 13.5px; font-weight: 700;
    color: var(--ink); text-decoration: none;
    padding: 11px 22px;
    border: 1.5px solid var(--ink); border-radius: 999px;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
.excel-tool .nav-cta:hover { background: var(--ink); color: #fff; }
.excel-tool .nav-cta::after { content: "▶︎"; font-size: 10px; }

  /* ===== Hero ===== */
.excel-tool .hero { padding: 96px 0 80px; position: relative; overflow: hidden; }
.excel-tool .hero::before {
    content: "";
    position: absolute;
    right: -180px; top: 60px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
    pointer-events: none;
  }
.excel-tool .hero-inner { position: relative; z-index: 2; }
.excel-tool .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12.5px; font-weight: 900;
    letter-spacing: 0.16em;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 36px;
  }
.excel-tool .hero-eyebrow::before { content: "▶"; font-size: 9px; }
.excel-tool .hero h1 {
    font-size: clamp(38px, 5.6vw, 72px);
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -0.012em;
    margin-bottom: 32px;
    color: var(--ink);
  }
.excel-tool .hero h1 .accent { color: var(--accent); position: relative; }
.excel-tool .hero h1 .accent::after {
    content: "";
    position: absolute;
    left: -3%; right: -3%; bottom: 0.06em;
    height: 14px;
    background: var(--accent-bg);
    z-index: -1;
  }
.excel-tool .hero-lede {
    font-size: 17px;
    line-height: 2.0;
    color: var(--ink-soft);
    max-width: 660px;
    margin-bottom: 44px;
    font-weight: 500;
  }
.excel-tool .hero-lede .em { color: var(--ink); font-weight: 700; }
.excel-tool .hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.excel-tool .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink); color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
    border: none; border-radius: 999px;
    cursor: pointer; transition: all .25s;
  }
.excel-tool .btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.excel-tool .btn-primary::after { content: "▶︎"; font-size: 11px; }

.excel-tool .hero-price-tag {
    font-size: 13.5px;
    color: var(--ink-mid);
    line-height: 1.6;
    font-weight: 500;
    display: flex; align-items: center; gap: 14px;
    padding-left: 22px;
    border-left: 2px solid var(--line);
  }
.excel-tool .hero-price-tag .price-num { font-size: 24px; font-weight: 900; color: var(--ink); margin-right: 2px; }

  /* Hero compare */
.excel-tool .hero-visual { margin-top: 96px; position: relative; z-index: 2; }
.excel-tool .compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0; align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(26, 31, 44, 0.04);
  }
.excel-tool .compare-side { padding: 40px 36px; min-height: 320px; }
.excel-tool .compare-side.before { background: linear-gradient(180deg, #fff 0%, #fbf6f3 100%); }
.excel-tool .compare-side.after { background: linear-gradient(180deg, #fff 0%, #f3f7f4 100%); }
.excel-tool .compare-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.excel-tool .compare-badge {
    font-size: 11px; font-weight: 900;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 4px;
  }
.excel-tool .compare-side.before .compare-badge { background: var(--accent-bg); color: var(--accent); }
.excel-tool .compare-side.after .compare-badge { background: var(--good-bg); color: var(--good); }
.excel-tool .compare-title { font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 22px; line-height: 1.45; }
.excel-tool .compare-list { list-style: none; }
.excel-tool .compare-list li {
    font-size: 14px; color: var(--ink-soft);
    padding: 8px 0 8px 30px;
    position: relative; line-height: 1.7;
    font-weight: 500;
  }
.excel-tool .compare-side.before .compare-list li::before {
    content: "";
    position: absolute; left: 0; top: 12px;
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d94a2c' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
  }
.excel-tool .compare-side.after .compare-list li::before {
    content: "";
    position: absolute; left: 0; top: 12px;
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7d56' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  }
.excel-tool .compare-arrow {
    background: var(--ink); color: #fff;
    width: 72px;
    align-self: stretch;
    display: grid; place-items: center;
    font-weight: 900; font-size: 12px; letter-spacing: 0.1em;
  }
.excel-tool .compare-arrow svg { width: 28px; height: 28px; }

  /* ===== Section base ===== */
.excel-tool section { padding: 110px 0; position: relative; }
.excel-tool .section-head { margin-bottom: 56px; }
.excel-tool .section-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12px; font-weight: 900;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 18px;
  }
.excel-tool .section-eyebrow .num {
    background: var(--ink); color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
  }
.excel-tool .section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 22px;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
.excel-tool .section-title .accent { color: var(--accent); position: relative; }
.excel-tool .section-lede {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 2.0;
    max-width: 720px;
    font-weight: 500;
  }
.excel-tool .section-lede strong { color: var(--ink); font-weight: 700; }

  /* ===== CONCEPT (NEW) ===== */
.excel-tool .concept { background: var(--bg-card); border-bottom: 1px solid var(--line-soft); }
.excel-tool .contrast-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 16px;
    margin-bottom: 88px;
  }
.excel-tool .contrast-col {
    padding: 38px 36px 40px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    position: relative;
  }
.excel-tool .contrast-col.contrast-good {
    background: linear-gradient(180deg, #fff 0%, var(--good-bg) 100%);
    border-color: var(--good);
  }
.excel-tool .contrast-col.contrast-bad {
    background: linear-gradient(180deg, #fff 0%, var(--accent-bg) 100%);
    border-color: var(--accent);
  }
.excel-tool .contrast-label {
    font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 22px;
  }
.excel-tool .contrast-bad .contrast-label { background: var(--accent); color: #fff; }
.excel-tool .contrast-good .contrast-label { background: var(--good); color: #fff; }
.excel-tool .contrast-col h3 {
    font-size: 22px; font-weight: 900;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 22px;
  }
.excel-tool .contrast-col h3 .em-bad { color: var(--accent); }
.excel-tool .contrast-col h3 .em-good { color: var(--good); }
.excel-tool .contrast-col ul { list-style: none; }
.excel-tool .contrast-col ul li {
    font-size: 14.5px;
    color: var(--ink-soft);
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.75;
    font-weight: 500;
    border-bottom: 1px dashed var(--line-soft);
  }
.excel-tool .contrast-col ul li:last-child { border-bottom: none; }
.excel-tool .contrast-bad ul li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d94a2c' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
  }
.excel-tool .contrast-good ul li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7d56' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  }
.excel-tool .contrast-arrow {
    width: 64px;
    display: grid; place-items: center;
    color: var(--ink-mid);
  }
.excel-tool .contrast-arrow .arrow-box {
    width: 48px; height: 48px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
  }

.excel-tool .concept-sub-head {
    text-align: center;
    margin-bottom: 56px;
  }
.excel-tool .concept-sub-head h3 {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 900;
    line-height: 1.55;
    margin-bottom: 16px;
    color: var(--ink);
  }
.excel-tool .concept-sub-head p {
    font-size: 15px;
    color: var(--ink-mid);
    font-weight: 500;
  }

  /* Master + Views diagram */
.excel-tool .concept-diagram { position: relative; }
.excel-tool .master-card {
    max-width: 540px;
    margin: 0 auto;
    padding: 36px 40px;
    background: var(--bg-deep);
    color: #fff;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(26, 31, 44, 0.16);
  }
.excel-tool .master-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--accent);
    background: rgba(217, 74, 44, 0.18);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
  }
.excel-tool .master-icon { color: #ff8b6e; margin-bottom: 16px; display: grid; place-items: center; }
.excel-tool .master-card h4 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
  }
.excel-tool .master-card .master-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 22px; font-weight: 500; }
.excel-tool .master-tags {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  }
.excel-tool .master-tags span {
    font-size: 12px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    padding: 5px 11px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.12);
    font-weight: 500;
  }

.excel-tool .diagram-connector {
    text-align: center;
    padding: 28px 0;
    position: relative;
  }
.excel-tool .diagram-connector::before {
    content: "";
    position: absolute;
    left: 50%; top: 0; bottom: 50%;
    width: 1.5px;
    background: var(--ink);
    transform: translateX(-50%);
  }
.excel-tool .diagram-connector .connector-label {
    display: inline-block;
    position: relative;
    background: var(--bg-card);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    z-index: 2;
  }
.excel-tool .diagram-connector::after {
    content: "";
    position: absolute;
    left: 8%; right: 8%; top: 50%;
    height: 1.5px;
    background: var(--ink);
    z-index: 1;
  }

.excel-tool .views-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }
.excel-tool .views-grid::before {
    /* 上から伸びる縦線（各カードに伸びる） */
    display: none;
  }
.excel-tool .view-card {
    background: var(--bg-card);
    border: 1.5px solid var(--ink);
    border-radius: 14px;
    padding: 26px 22px 28px;
    text-align: center;
    position: relative;
    transition: transform .25s;
  }
.excel-tool .view-card::before {
    content: "";
    position: absolute;
    left: 50%; top: -28px;
    width: 1.5px; height: 28px;
    background: var(--ink);
  }
.excel-tool .view-card:hover { transform: translateY(-3px); }
.excel-tool .view-icon-wrap {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: 12px;
    display: grid; place-items: center;
  }
.excel-tool .view-role {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--ink-mid);
    background: var(--bg-soft);
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 12px;
  }
.excel-tool .view-card h5 {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 10px;
  }
.excel-tool .view-card p {
    font-size: 12.5px;
    color: var(--ink-mid);
    line-height: 1.75;
    font-weight: 500;
  }

.excel-tool .concept-conclusion {
    margin-top: 80px;
    padding: 36px 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 12px 36px rgba(217, 74, 44, 0.22);
  }
.excel-tool .concept-conclusion .icon { color: #fff; flex-shrink: 0; }
.excel-tool .concept-conclusion p {
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 700;
    line-height: 1.65;
  }

  /* ===== Pain section ===== */
.excel-tool .pain { background: var(--bg); }
.excel-tool .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 16px;
  }
.excel-tool .pain-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: all .25s;
    position: relative;
  }
.excel-tool .pain-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(217, 74, 44, 0.08);
  }
.excel-tool .pain-icon-wrap {
    width: 56px; height: 56px;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 22px;
    transition: all .25s;
  }
.excel-tool .pain-card:hover .pain-icon-wrap { background: var(--accent); color: #fff; border-color: var(--accent); }
.excel-tool .pain-num {
    font-size: 11px; font-weight: 900;
    color: var(--ink-muted);
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }
.excel-tool .pain-title {
    font-size: 19px; font-weight: 900;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 12px;
  }
.excel-tool .pain-body {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.85;
    font-weight: 500;
  }
.excel-tool .pain-body .em { background: var(--accent-bg); color: var(--accent); font-weight: 700; padding: 1px 5px; border-radius: 3px; }

  /* ===== Deliverables ===== */
.excel-tool .deliv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
  }
.excel-tool .deliv-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 36px 30px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
.excel-tool .deliv-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
.excel-tool .deliv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26, 31, 44, 0.06); }
.excel-tool .deliv-card:hover::before { transform: scaleX(1); }
.excel-tool .deliv-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.excel-tool .deliv-num {
    width: 32px; height: 32px;
    background: var(--ink); color: #fff;
    display: grid; place-items: center;
    font-weight: 900; font-size: 13px;
    border-radius: 8px;
  }
.excel-tool .deliv-icon-wrap { margin-left: auto; color: var(--accent); }
.excel-tool .deliv-title { font-size: 20px; font-weight: 900; line-height: 1.45; margin-bottom: 14px; }
.excel-tool .deliv-body { font-size: 14px; color: var(--ink-soft); line-height: 1.95; margin-bottom: 22px; font-weight: 500; }
.excel-tool .deliv-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.excel-tool .deliv-tag {
    font-size: 11.5px; color: var(--ink-mid);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
  }

  /* ===== Pricing ===== */
.excel-tool .pricing { background: var(--bg-card); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.excel-tool .price-card {
    background: var(--bg);
    border: 1.5px solid var(--ink);
    border-radius: 20px;
    padding: 56px 56px 48px;
    margin-top: 16px;
    max-width: 880px;
    margin-left: auto; margin-right: auto;
    position: relative;
  }
.excel-tool .price-tag-label {
    position: absolute;
    top: -14px; left: 40px;
    background: var(--ink); color: #fff;
    font-size: 12px; font-weight: 900;
    letter-spacing: 0.16em;
    padding: 7px 18px;
    border-radius: 999px;
  }
.excel-tool .price-headline {
    font-size: 22px; font-weight: 900;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--ink);
    display: flex; align-items: center; gap: 12px;
  }
.excel-tool .price-main {
    display: flex; align-items: baseline;
    gap: 18px; flex-wrap: wrap;
    padding: 32px 0 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
.excel-tool .price-amount { font-size: 76px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.excel-tool .price-yen { font-size: 24px; font-weight: 900; color: var(--ink); }
.excel-tool .price-yen .tax { font-size: 12px; font-weight: 500; color: var(--ink-mid); margin-left: 6px; }
.excel-tool .price-note { font-size: 13.5px; color: var(--ink-mid); margin-left: auto; font-weight: 500; line-height: 1.7; }
.excel-tool .price-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.excel-tool .price-rule {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 20px;
  }
.excel-tool .price-rule-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 900;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 12px;
  }
.excel-tool .price-rule-head .icon-sm { color: var(--accent); }
.excel-tool .price-rule-value { font-size: 13.5px; color: var(--ink-mid); line-height: 1.6; font-weight: 500; }
.excel-tool .price-rule-value .big { font-size: 24px; font-weight: 900; color: var(--ink); margin-right: 4px; letter-spacing: -0.02em; }
.excel-tool .price-foot {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
    font-size: 13px; color: var(--ink-mid);
    line-height: 1.95;
    font-weight: 500;
  }
.excel-tool .price-foot p { padding-left: 22px; position: relative; }
.excel-tool .price-foot p::before { content: "※"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.excel-tool .price-foot p + p { margin-top: 4px; }

  /* ===== Fit check ===== */
.excel-tool .fit-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 16px;
  }
.excel-tool .fit-col {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
.excel-tool .fit-col.match { border: 2px solid var(--ink); }
.excel-tool .fit-head {
    padding: 24px 32px 22px;
    display: flex; align-items: center; gap: 14px;
    border-bottom: 1px solid var(--line-soft);
  }
.excel-tool .fit-col.match .fit-head { background: var(--ink); color: #fff; }
.excel-tool .fit-col.unmatch .fit-head { background: var(--bg-soft); color: var(--ink-soft); }
.excel-tool .fit-head-label { font-size: 11px; font-weight: 900; letter-spacing: 0.16em; opacity: 0.8; margin-bottom: 4px; }
.excel-tool .fit-head-title { font-size: 20px; font-weight: 900; }
.excel-tool .fit-head-icon { margin-left: auto; }
.excel-tool .fit-list { list-style: none; padding: 12px 32px 28px; }
.excel-tool .fit-list li {
    padding: 16px 0 16px 36px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    font-size: 15px; line-height: 1.75;
    color: var(--ink-soft); font-weight: 500;
  }
.excel-tool .fit-list li:last-child { border-bottom: none; }
.excel-tool .fit-list li strong { color: var(--ink); font-weight: 900; }
.excel-tool .fit-col.match .fit-list li::before {
    content: "";
    position: absolute; left: 0; top: 16px;
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50%;
  }
.excel-tool .fit-col.match .fit-list li::after {
    content: "";
    position: absolute; left: 5px; top: 23px;
    width: 12px; height: 7px;
    border-left: 2.4px solid #fff;
    border-bottom: 2.4px solid #fff;
    transform: rotate(-45deg);
  }
.excel-tool .fit-col.unmatch .fit-list li::before {
    content: "—";
    position: absolute; left: 4px; top: 14px;
    color: var(--ink-muted);
    font-weight: 900; font-size: 18px;
  }

  /* ===== Use cases ===== */
.excel-tool .uc-section { background: var(--bg-card); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.excel-tool .uc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }
.excel-tool .uc-card {
    padding: 28px 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all .25s;
  }
.excel-tool .uc-card:hover { background: var(--accent-bg); border-color: var(--accent); transform: translateY(-2px); }
.excel-tool .uc-icon-wrap {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 16px;
    border: 1px solid var(--line);
    transition: all .25s;
  }
.excel-tool .uc-card:hover .uc-icon-wrap { background: var(--accent); color: #fff; border-color: var(--accent); }
.excel-tool .uc-icon-wrap .icon { width: 22px; height: 22px; stroke-width: 1.7; }
.excel-tool .uc-industry { font-size: 16px; font-weight: 900; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.excel-tool .uc-managed { font-size: 12.5px; color: var(--ink-mid); line-height: 1.7; font-weight: 500; }
.excel-tool .uc-managed strong { color: var(--ink-soft); font-weight: 700; }

  /* ===== Process ===== */
.excel-tool .process { background: var(--bg); }
.excel-tool .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 16px;
    position: relative;
  }
.excel-tool .process-step { padding: 0 12px; position: relative; text-align: center; }
.excel-tool .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px; right: -10px;
    width: 20px; height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d94a2c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 6 15 12 9 18'/%3E%3C/svg%3E") center/contain no-repeat;
    z-index: 2;
  }
.excel-tool .process-num-wrap { width: 72px; height: 72px; margin: 0 auto 22px; position: relative; }
.excel-tool .process-num {
    width: 72px; height: 72px;
    background: var(--bg-card);
    color: var(--ink);
    display: grid; place-items: center;
    font-size: 22px; font-weight: 900;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
  }
.excel-tool .process-num-badge {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--accent); color: #fff;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px; font-weight: 900;
    border: 2px solid var(--bg);
  }
.excel-tool .process-icon-row { color: var(--accent); margin-bottom: 14px; display: grid; place-items: center; }
.excel-tool .process-title { font-size: 16px; font-weight: 900; margin-bottom: 10px; color: var(--ink); }
.excel-tool .process-body { font-size: 13px; color: var(--ink-mid); line-height: 1.85; font-weight: 500; }

  /* ===== FAQ ===== */
.excel-tool .faq { background: var(--bg-card); border-top: 1px solid var(--line-soft); }
.excel-tool .faq-list { margin-top: 16px; }
.excel-tool .faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
  }
.excel-tool .faq-item.open { border-color: var(--ink); }
.excel-tool .faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex; align-items: center; gap: 18px;
    font-size: 16px; font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
    transition: color .2s;
  }
.excel-tool .faq-q:hover { color: var(--accent); }
.excel-tool .faq-q .q-mark {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 900; font-size: 14px;
    flex-shrink: 0;
  }
.excel-tool .faq-q .q-toggle {
    margin-left: auto;
    width: 28px; height: 28px;
    display: grid; place-items: center;
    color: var(--ink-mid);
    flex-shrink: 0;
    transition: transform .25s;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
.excel-tool .faq-q .q-toggle::before { content: "+"; font-size: 18px; line-height: 1; }
.excel-tool .faq-item.open .q-toggle { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.excel-tool .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 28px;
  }
.excel-tool .faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 28px 26px;
  }
.excel-tool .faq-a-inner { padding-left: 50px; border-left: 2px solid var(--accent-soft); }
.excel-tool .faq-a p { font-size: 14.5px; color: var(--ink-soft); line-height: 2; font-weight: 500; }

  /* ===== Out of scope ===== */
.excel-tool .scope { background: var(--bg-soft); }
.excel-tool .scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
  }
.excel-tool .scope-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 28px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
.excel-tool .scope-icon-wrap {
    width: 44px; height: 44px;
    background: var(--bg);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--ink-mid);
    flex-shrink: 0;
    border: 1px solid var(--line);
  }
.excel-tool .scope-icon-wrap .icon { width: 22px; height: 22px; stroke-width: 1.7; }
.excel-tool .scope-content { flex: 1; }
.excel-tool .scope-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.excel-tool .scope-card-title { font-size: 15.5px; font-weight: 900; color: var(--ink); line-height: 1.5; }
.excel-tool .scope-tag {
    font-size: 10.5px; font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
.excel-tool .scope-body { font-size: 13.5px; color: var(--ink-mid); line-height: 1.8; font-weight: 500; }
.excel-tool .scope-foot {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    font-size: 13.5px; color: var(--ink-soft);
    line-height: 1.85; font-weight: 500;
    display: flex; align-items: flex-start; gap: 14px;
  }
.excel-tool .scope-foot .icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.excel-tool .scope-foot strong { color: var(--ink); font-weight: 900; }

  /* ===== Final CTA ===== */
.excel-tool .final-cta {
    background: var(--ink); color: #fff;
    text-align: center;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
.excel-tool .final-cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(217, 74, 44, 0.18) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
.excel-tool .final-cta-content { position: relative; z-index: 2; }
.excel-tool .final-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 900;
    letter-spacing: 0.18em;
    color: #ffb59f;
    background: rgba(217, 74, 44, 0.18);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 32px;
  }
.excel-tool .final-cta h2 {
    font-size: clamp(32px, 4.4vw, 52px);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 26px;
    color: #fff;
  }
.excel-tool .final-cta h2 .accent { color: #ff8b6e; }
.excel-tool .final-cta-lede {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 2;
    max-width: 620px;
    margin: 0 auto 44px;
    font-weight: 500;
  }
.excel-tool .final-cta .btn-primary {
    background: var(--accent);
    padding: 22px 52px;
    font-size: 16px;
  }
.excel-tool .final-cta .btn-primary:hover { background: #ec603f; }
.excel-tool .cta-meta {
    margin-top: 28px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 16px;
  }
.excel-tool .cta-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.excel-tool .cta-meta .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; }

  /* ===== Footer ===== */
.excel-tool footer {
    background: #0d1018;
    color: rgba(255, 255, 255, 0.55);
    padding: 44px 0 36px;
    font-size: 12.5px; font-weight: 500;
  }
.excel-tool .footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.excel-tool .footer-brand { color: #fff; font-weight: 900; font-size: 15px; letter-spacing: 0.02em; }

  /* ===== Responsive ===== */
  @media (max-width: 980px) {
.excel-tool .views-grid { grid-template-columns: repeat(2, 1fr); }
.excel-tool .view-card:nth-child(3)::before, .excel-tool .view-card:nth-child(4)::before { display: none; }
  }
  @media (max-width: 880px) {
.excel-tool .hero { padding: 56px 0 60px; }
.excel-tool .compare-grid { grid-template-columns: 1fr; }
.excel-tool .compare-arrow { width: 100%; padding: 14px; }
.excel-tool .compare-arrow svg { transform: rotate(90deg); }
.excel-tool .contrast-grid { grid-template-columns: 1fr; gap: 16px; }
.excel-tool .contrast-arrow { transform: rotate(90deg); padding: 8px 0; }
.excel-tool .views-grid { grid-template-columns: 1fr; }
.excel-tool .view-card::before { display: none; }
.excel-tool .diagram-connector::after { display: none; }
.excel-tool .concept-conclusion { flex-direction: column; text-align: center; padding: 28px 24px; }
.excel-tool .fit-grid { grid-template-columns: 1fr; }
.excel-tool .scope-grid { grid-template-columns: 1fr; }
.excel-tool .price-rules { grid-template-columns: 1fr; }
.excel-tool .price-card { padding: 40px 28px; }
.excel-tool .price-amount { font-size: 56px; }
.excel-tool .price-main { gap: 8px; }
.excel-tool .price-note { width: 100%; margin-left: 0; margin-top: 8px; }
.excel-tool .process-grid { grid-template-columns: 1fr; gap: 36px; }
.excel-tool .process-step:not(:last-child)::after {
      top: auto; right: auto; bottom: -28px; left: 50%;
      transform: translateX(-50%) rotate(90deg);
    }
.excel-tool section { padding: 80px 0; }
.excel-tool .nav-cta { display: none; }
.excel-tool .hero-cta-row { flex-direction: column; align-items: flex-start; }
.excel-tool .hero-price-tag { padding-left: 0; border-left: none; }
  }

.excel-tool .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.excel-tool .reveal.in { opacity: 1; transform: translateY(0); }

/* Studio compatibility */
.excel-tool img.icon{
  width:28px;
  height:28px;
  display:block;
  flex-shrink:0;
}

.excel-tool{
  min-height:auto !important;
  height:auto !important;
}

.excel-tool section{
  min-height:auto !important;
}