:root {
    --freee-blue: #0055b8;
    --freee-blue-2: #0063d6;
    --freee-blue-light: #e8f1fb;
    --freee-blue-soft: #f4f8fd;
    --freee-blue-dark: #003d82;
    --accent: #ff8a3d;       /* warmer orange */
    --accent-dark: #ee6f1c;
    --accent-soft: #fff3e8;
    --success: #1fb37a;
    --ink: #1a2340;
    --ink-soft: #42506e;
    --ink-muted: #6b7890;
    --ink-light: #9aa5bb;
    --paper: #fafbfc;
    --paper-warm: #fdfbf6;
    --surface: #ffffff;
    --line: #e8ecf2;
    --line-soft: #f1f3f7;

    /* Category palette (soft, matching freee reference) */
    --cat-setup-bg: #e4f0fc;      --cat-setup-fg: #0055b8;   /* 設立 */
    --cat-migrate-bg: #e4f0fc;    --cat-migrate-fg: #0055b8; /* 乗り換え */
    --cat-outsource-bg: #e4f0fc;  --cat-outsource-fg: #0055b8; /* 外注管理 */
    --cat-compli-bg: #e4f0fc;     --cat-compli-fg: #0055b8;  /* 外注上位 */
    --cat-hire-bg: #e4f0fc;       --cat-hire-fg: #0055b8;    /* 雇用 */
    --cat-project-bg: #e4f0fc;    --cat-project-fg: #0055b8; /* 案件管理 */
    --cat-existing-bg: #e4f0fc;   --cat-existing-fg: #0055b8; /* 既存ユーザー */

    --shadow-xs: 0 1px 2px rgba(15,26,46,0.04);
    --shadow-sm: 0 2px 8px rgba(15,26,46,0.05), 0 1px 2px rgba(15,26,46,0.03);
    --shadow-md: 0 8px 24px rgba(15,26,46,0.07), 0 2px 6px rgba(15,26,46,0.04);
    --shadow-lg: 0 24px 48px rgba(15,26,46,0.10), 0 6px 16px rgba(15,26,46,0.05);
    --shadow-xl: 0 32px 80px rgba(15,26,46,0.14), 0 12px 24px rgba(15,26,46,0.06);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

  /* ===== Header ===== */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-soft);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logos {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand-logo { display: inline-flex; align-items: center; height: 28px; }
  .brand-logo img { height: 100%; width: auto; display: block; }
  .brand-logo.lancers img { height: 22px; }
  .brand-logo.freee img { height: 30px; }
  .logo-cross {
    color: var(--ink-light);
    font-weight: 300;
    font-size: 20px;
    font-family: "Inter", sans-serif;
  }
  .header-cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255,138,61,0.28);
  }
  .header-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,138,61,0.38);
  }
  @media (min-width: 768px) { .header-cta { display: inline-flex; } }

  /* ===== Pricing Strip (quick glance after hero) ===== */
  .pricing-strip {
    background: white;
    padding: 72px 0 80px;
    border-top: 1px solid var(--line-soft);
  }
  .pricing-strip .section-lead-intro {
    text-align: center;
    margin-bottom: 40px;
  }
  .pricing-strip-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--freee-blue-soft);
    color: var(--freee-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .pricing-strip h2 {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 900;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .pricing-strip .sub {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.85;
  }
  .pricing-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .pricing-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.2s;
  }
  .pricing-row:last-child { border-bottom: none; }
  .pricing-row:hover { background: var(--freee-blue-soft); }
  .pricing-row-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .pricing-row-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
  }
  .pricing-row-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    white-space: nowrap;
  }
  .pricing-row-price .amount {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--accent);
    letter-spacing: -0.02em;
  }
  .pricing-row-price .unit {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 500;
  }
  .pricing-row-price .tilde {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
  }
  .pricing-row-price .prefix {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 600;
    margin-right: 4px;
  }
  .pricing-foot {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: var(--ink-muted);
  }
  .pricing-foot a {
    color: var(--freee-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (max-width: 640px) {
    .pricing-row {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 16px 18px;
    }
    .pricing-row-tag { justify-self: start; }
    .pricing-row-price { justify-self: start; }
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #fdfbf6 0%, #f4f8fd 100%);
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(0,99,214,0.10) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,138,61,0.09) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15,26,46,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 10%, transparent 80%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 72px; }
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: white;
    border: 1px solid rgba(0,85,184,0.18);
    color: var(--freee-blue);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
  }
  .hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--freee-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,85,184,0.15);
  }
  .hero h1 {
    font-size: clamp(28px, 4.3vw, 48px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.005em;
    margin-bottom: 28px;
    color: var(--ink);
  }
  .hero h1 .serif {
    font-family: inherit;
    font-weight: 700;
    color: var(--freee-blue);
    position: relative;
    display: inline-block;
    padding: 0 4px;
  }
  .hero h1 .serif::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 6px;
    height: 12px;
    background: rgba(255,138,61,0.22);
    z-index: -1;
    border-radius: 6px;
  }
  .hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--ink-soft);
    margin-bottom: 36px;
    line-height: 2;
    max-width: 580px;
  }
  .cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 36px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 16px;
    border-radius: 100px;
    box-shadow: 0 14px 30px rgba(255,138,61,0.36), 0 4px 10px rgba(255,138,61,0.18);
    transition: all 0.25s;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
  }
  .cta-primary::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transition: left 0.6s;
  }
  .cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255,138,61,0.42), 0 6px 14px rgba(255,138,61,0.22);
  }
  .cta-primary:hover::before { left: 100%; }
  .cta-primary .arrow {
    font-size: 18px;
    transition: transform 0.2s;
  }
  .cta-primary:hover .arrow { transform: translateX(4px); }
  .cta-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
  }
  .cta-note-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .check-icon {
    color: var(--success);
    font-weight: 800;
    font-size: 14px;
  }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    height: 500px;
    display: none;
  }
  @media (min-width: 1024px) { .hero-visual { display: block; } }
  .mockup-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--line-soft);
    overflow: hidden;
  }
  .mockup-main {
    top: 30px;
    left: 0;
    right: 40px;
    bottom: 40px;
    padding: 22px;
  }
  .mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 18px;
  }
  .mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
  }
  .mockup-dot:nth-child(1) { background: #ff5f57; }
  .mockup-dot:nth-child(2) { background: #febc2e; }
  .mockup-dot:nth-child(3) { background: #28c840; }
  .mockup-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .mockup-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
  }
  .mockup-badge {
    padding: 3px 10px;
    background: var(--freee-blue-light);
    color: var(--freee-blue);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
  }
  .mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .mockup-stat {
    padding: 12px;
    background: var(--paper);
    border-radius: 10px;
  }
  .mockup-stat-label {
    font-size: 10px;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
  }
  .mockup-stat-value {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
  }
  .mockup-stat-value .unit {
    font-size: 11px;
    color: var(--ink-muted);
    font-weight: 500;
    margin-left: 2px;
  }
  .mockup-chart {
    height: 96px;
    background: linear-gradient(180deg, rgba(0,85,184,0.06), transparent);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  .mockup-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .mockup-list {
    margin-top: 16px;
  }
  .mockup-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 12px;
  }
  .mockup-list-item:last-child { border-bottom: none; }
  .mockup-list-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .mockup-list-dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .mockup-list-value {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: var(--ink);
  }
  .mockup-accent {
    top: 0;
    right: 0;
    width: 168px;
    background: linear-gradient(135deg, var(--freee-blue-2), var(--freee-blue));
    color: white;
    padding: 22px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    border: none;
  }
  .mockup-accent-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .mockup-accent-text {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
  }
  .mockup-accent-value {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22px;
  }
  .mockup-accent-value .unit { font-size: 12px; opacity: 0.8; }
  .mockup-bottom {
    bottom: 0;
    left: 60px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
  }
  .mockup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--freee-blue), var(--accent));
    position: relative;
    flex-shrink: 0;
  }
  .mockup-avatar::after {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 12px; height: 12px;
    background: var(--success);
    border: 2px solid white;
    border-radius: 50%;
  }
  .mockup-bottom-text {
    font-size: 12px;
  }
  .mockup-bottom-label { color: var(--ink-muted); font-size: 10px; }
  .mockup-bottom-value { font-weight: 700; color: var(--ink); }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ===== Trust Bar ===== */
  .trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 52px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
  }
  .trust-item {
    text-align: center;
    padding: 0 12px;
    position: relative;
  }
  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%; bottom: 15%;
    width: 1px;
    background: var(--line);
    display: none;
  }
  @media (min-width: 768px) {
    .trust-item:not(:last-child)::after { display: block; }
  }
  .trust-value {
    font-family: "Inter", sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--freee-blue);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .trust-value .plus { color: var(--accent); }
  .trust-label {
    font-size: 15px;
    color: var(--ink-soft);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  /* ===== Section Common ===== */
  section { padding: 110px 0; }
  .section-head {
    text-align: center;
    margin-bottom: 68px;
  }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--freee-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .section-label::before, .section-label::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--freee-blue);
    opacity: 0.5;
  }
  .section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: 0.01em;
  }
  .section-title .highlight {
    color: var(--freee-blue);
    position: relative;
    display: inline-block;
  }
  .section-title .highlight::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 10px;
    background: rgba(255,138,61,0.2);
    z-index: -1;
    border-radius: 4px;
  }
  .section-lead {
    margin-top: 20px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 2;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== Problem Section ===== */
  .problem {
    background: linear-gradient(180deg, var(--paper) 0%, white 100%);
  }
  .walls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .wall-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
  }
  .wall-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--freee-blue), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .wall-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
  .wall-card:hover::before { transform: scaleX(1); }
  .wall-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--freee-blue-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--freee-blue);
  }
  .wall-number {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }
  .wall-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--ink);
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .wall-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.95;
  }
  .wall-keywords {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .wall-kw {
    padding: 4px 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
  }

  /* ===== Solution Section ===== */
  .solution {
    background: var(--freee-blue-soft);
    position: relative;
    overflow: hidden;
  }
  .solution::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,85,184,0.1), transparent 70%);
    pointer-events: none;
  }
  .solution::after {
    content: "";
    position: absolute;
    bottom: -50px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,138,61,0.08), transparent 70%);
    pointer-events: none;
  }
  .values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
  }
  .value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .value-num {
    position: absolute;
    top: 20px; right: 24px;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--freee-blue-light);
    line-height: 1;
    z-index: 0;
  }
  .value-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--freee-blue-2), var(--freee-blue-dark));
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0,85,184,0.25);
  }
  .value-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--ink);
    position: relative;
    z-index: 1;
  }
  .value-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.95;
    position: relative;
    z-index: 1;
  }

  /* ===== Process Section ===== */
  .process {
    background: white;
  }
  .process-timeline {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
  }
  .process-timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--freee-blue), var(--accent));
    opacity: 0.25;
  }
  @media (min-width: 768px) {
    .process-timeline::before { left: 40px; }
  }
  .process-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
  }
  @media (min-width: 768px) {
    .process-step { gap: 32px; }
  }
  .process-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--freee-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    color: var(--freee-blue);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
  }
  @media (min-width: 768px) {
    .process-marker { width: 80px; height: 80px; font-size: 22px; }
  }
  .process-step.highlight .process-marker {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 10px 24px rgba(255,138,61,0.35);
  }
  .process-content {
    flex: 1;
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    border: 1px solid var(--line-soft);
  }
  .process-step.highlight .process-content {
    background: var(--accent-soft);
    border-color: rgba(255,138,61,0.25);
  }
  .process-step-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.15em;
    margin-bottom: 4px;
  }
  .process-step-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.55;
  }
  .process-step-desc {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.85;
  }
  .process-step-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
  }

  /* ===== Packages Section ===== */
  .packages-section {
    background: linear-gradient(180deg, white 0%, var(--paper-warm) 100%);
  }
  .packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .pkg-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s;
    position: relative;
  }
  .pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line-soft);
  }
  .pkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .pkg-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.04em;
  }
  .pkg-audience {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #f3f5f8;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
  }
  .pkg-audience::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
  }
  .pkg-name {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: 0.01em;
    margin-top: 2px;
  }
  .pkg-problems-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .pkg-problems {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: -4px;
  }
  .pkg-problem {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .pkg-problem-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    margin-top: 3px;
  }
  .pkg-tools {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 4px;
  }
  .pkg-tools-label {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }
  .pkg-tools-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
  }
  .pkg-tool {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .pkg-tool-icon {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
  .pkg-tool-cross {
    color: var(--ink-light);
    font-size: 11px;
    margin: 0 1px;
  }
  .pkg-price-section {
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    margin-top: 2px;
  }
  .pkg-price-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .pkg-price {
    font-family: "Inter", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
  }
  .pkg-price-unit {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 500;
  }
  .pkg-price-tilde {
    color: var(--accent);
    font-weight: 600;
    font-size: 18px;
  }
  .pkg-prefix {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-right: 2px;
  }
  .pkg-price-note {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 4px;
    line-height: 1.6;
  }

  /* Featured (existing user) card — centered last */
  .pkg-featured-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .pkg-featured-wrap .pkg-card {
    max-width: 360px;
  }

  .pkg-callout {
    text-align: center;
    margin-top: 48px;
    padding: 28px 32px;
    background: white;
    border-radius: var(--radius-lg);
    font-size: 15px;
    color: var(--ink-soft);
    border: 1px dashed rgba(0,85,184,0.25);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
  }
  .pkg-callout strong {
    color: var(--freee-blue);
    font-weight: 900;
  }

  /* ===== FAQ ===== */
  .faq {
    background: white;
  }
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s;
  }
  .faq-item:hover { border-color: var(--freee-blue); }
  .faq-item[open] {
    background: white;
    box-shadow: var(--shadow-sm);
    border-color: var(--freee-blue);
  }
  .faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    transition: color 0.2s;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q-mark {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--freee-blue);
    flex-shrink: 0;
  }
  .faq-q-text { flex: 1; line-height: 1.6; }
  .faq-q-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    transition: transform 0.3s;
  }
  .faq-item[open] .faq-q-icon { transform: rotate(180deg); }
  .faq-a {
    padding: 0 24px 22px 60px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.95;
  }

  /* ===== Bottom CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--freee-blue) 0%, var(--freee-blue-dark) 100%);
    color: white;
    text-align: center;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
  }
  .final-cta::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,138,61,0.22), transparent 70%);
    border-radius: 50%;
  }
  .final-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
  }
  .final-cta-inner {
    position: relative;
    z-index: 1;
  }
  .final-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
  }
  .final-cta h2 {
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 900;
    line-height: 1.55;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
  }
  .final-cta h2 .serif {
    font-family: inherit;
    font-weight: 700;
    color: #ffd77a;
    position: relative;
    display: inline-block;
  }
  .final-cta p {
    font-size: 16px;
    opacity: 0.92;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
  }
  .final-cta .cta-primary {
    background: white;
    color: var(--accent-dark);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .final-cta .cta-primary:hover {
    background: #fff8f0;
    transform: translateY(-2px);
  }
  .final-cta .cta-notes {
    color: rgba(255,255,255,0.9);
    justify-content: center;
    text-align: center;
    margin-top: 20px;
  }
  .final-cta .check-icon { color: #ffd77a; }
  .final-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* ===== Footer ===== */
  footer {
    padding: 48px 0 32px;
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-size: 13px;
  }
  .footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
    font-size: 12px;
  }
  .footer-links a:hover { color: white; }
  .footer-copy {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    opacity: 0.6;
    margin-top: 12px;
    letter-spacing: 0.05em;
  }

  /* ===== Animations ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tag, .hero h1, .hero-sub, .cta-wrap, .hero-visual {
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  .hero h1 { animation-delay: 0.08s; }
  .hero-sub { animation-delay: 0.18s; }
  .cta-wrap { animation-delay: 0.28s; }
  .hero-visual { animation-delay: 0.38s; }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
  .reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
  .reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
  .reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
  .reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
  .reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
  .reveal-stagger.in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }

  /* Mobile adjustments */
  @media (max-width: 767px) {
    section { padding: 72px 0; }
    .hero { padding: 48px 0 72px; }
    .final-cta { padding: 72px 0; }
    .cta-primary { width: 100%; justify-content: center; padding: 18px 24px; }
    .cta-wrap { align-items: stretch; }
    .logo-lancers, .logo-freee { font-size: 13px; }
    .section-head { margin-bottom: 48px; }
  }

/* ===== Services intro ===== */
.services-intro {
  padding: 88px 0 40px;
  background: #fff;
  text-align: center;
}
.services-intro .section-title {
  font-size: clamp(28px, 4vw, 40px);
}
.services-intro-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  background: rgba(0,85,184,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ===== Service section (SmartHR-style) ===== */
.service {
  padding: 88px 0;
  background: #fff;
  position: relative;
}
.service.bg-alt {
  background: #f5f8fc;
}
.service + .service {
  border-top: 1px solid var(--line-soft);
}
.service.bg-alt + .service:not(.bg-alt),
.service:not(.bg-alt) + .service.bg-alt {
  border-top: none;
}
.svc-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .svc-inner { grid-template-columns: 1fr; gap: 32px; }
}
.svc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.svc-num {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.svc-cat {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.svc-audience {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}
.svc-name {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.svc-block {
  margin-bottom: 24px;
}
.svc-block-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  line-height: 1;
}
.svc-problems {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-problem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.svc-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 2px;
  position: relative;
}
.svc-check::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.svc-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.svc-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.service.bg-alt .svc-tool {
  background: #fff;
}
.svc-tool-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.svc-tool-x {
  color: var(--ink-light);
  font-size: 12px;
  margin: 0 2px;
}

/* Price card (right column, sticky-ish) */
.svc-right {
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .svc-right { position: static; }
}
.svc-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service.bg-alt .svc-price-card {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.svc-price-card-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.svc-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.svc-price-prefix {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-right: 4px;
}
.svc-price-amount {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-price-unit {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
}
.svc-price-tilde {
  color: var(--accent);
  font-weight: 600;
  font-size: 22px;
}
.svc-price-note {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed var(--line);
  margin-bottom: 18px;
}
.svc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.svc-cta:hover {
  background: #d85d13;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(238,111,28,0.3);
}
.svc-cta .arrow {
  transition: transform 0.2s;
}
.svc-cta:hover .arrow {
  transform: translateX(3px);
}

/* ===== Challenges grid (SmartHR-style) ===== */
.challenges {
  padding: 96px 0 80px;
  background: #fff;
}
.chg-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
.chg-row {
  display: grid;
  gap: 14px;
}
.chg-row-3 { grid-template-columns: repeat(3, 1fr); }
.chg-row-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) {
  .chg-row-3, .chg-row-2 { grid-template-columns: 1fr; }
}
.chg-card {
  cursor: default;
  display: flex;
  align-items: stretch;
  background: #f5f8fc;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
}
.chg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,85,184,0.12);
  background: #eff5fc;
}
.chg-ill {
  flex-shrink: 0;
  width: 116px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chg-ill svg {
  width: 100%;
  height: auto;
  display: block;
}
.chg-body {
  flex: 1;
  min-width: 0;
  padding: 22px 20px 22px 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.chg-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.chg-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.chg-card:hover .chg-arrow {
  transform: translateX(3px);
  background: #003f8c;
}
/* Row 1: 3-col vertical stack */
.chg-row-3 .chg-card { flex-direction: column !important; align-items: stretch !important; }
.chg-row-3 .chg-ill { width: 100% !important; aspect-ratio: 200 / 140; padding: 8px 12px 0; box-sizing: border-box; }
.chg-row-3 .chg-ill svg { border-radius: 6px; }
.chg-row-3 .chg-body { padding: 16px 18px 18px !important; display: grid !important; grid-template-columns: 1fr auto !important; align-items: center !important; gap: 14px; }
.chg-row-3 .chg-title { font-size: 15px !important; line-height: 1.5 !important; }

/* Rows 2 & 3: 2-col horizontal compact */
.chg-row-2 .chg-card { flex-direction: row !important; align-items: center !important; min-height: 96px; }
.chg-row-2 .chg-ill { width: 120px !important; flex-shrink: 0; padding: 8px 4px 8px 10px; box-sizing: border-box; display: flex; align-items: center; }
.chg-row-2 .chg-ill svg { width: 100%; height: auto; border-radius: 4px; }
.chg-row-2 .chg-body { flex: 1; display: grid !important; grid-template-columns: 1fr auto !important; align-items: center !important; gap: 12px; padding: 14px 18px 14px 14px !important; }
.chg-row-2 .chg-title { font-size: 14px !important; line-height: 1.55 !important; }

@media (max-width: 640px) {
  .chg-row-2 .chg-ill { width: 96px !important; }
  .chg-row-2 .chg-title { font-size: 13px !important; }
}

/* ========== SERVICE TYPE A (hero) ========== */
.serviceA {
  padding: 88px 0;
  background: #fff;
  position: relative;
}
.serviceA.bg-alt { background: #f5f8fc; }
.svcA-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .svcA-inner { grid-template-columns: 1fr; gap: 32px; }
  .svcA-right { order: -1; }
}
.svcA-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.svcA-name {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.svcA-tagline {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 30px;
  font-weight: 500;
}
.svcA-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.serviceA.bg-alt .svcA-bottom { border-color: transparent; box-shadow: 0 6px 20px rgba(0,0,0,0.05);}
.svcA-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svcA-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.svcA-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.svcA-price-prefix {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-right: 2px;
}
.svcA-price-amount {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svcA-price-unit {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}
.svcA-price-tilde {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 18px;
}
.svcA-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.svcA-cta:hover { background: #d85d13; transform: translateY(-1px); box-shadow: 0 6px 14px rgba(238,111,28,0.3); }
.svcA-cta .arrow { transition: transform 0.2s; }
.svcA-cta:hover .arrow { transform: translateX(3px); }
.svcA-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.svcA-right svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== SERVICE TYPE B (cards grid) ========== */
.serviceB {
  padding: 72px 0 88px;
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.svcB-head-section {
  text-align: center;
  margin-bottom: 44px;
}
.svcB-head-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  background: rgba(0,85,184,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.svcB-head-text {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
.svcB-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .svcB-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svcB-grid { grid-template-columns: 1fr; }
}
.svcB-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--ink);
}
.svcB-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,85,184,0.12);
  border-color: rgba(0,85,184,0.3);
}
.svcB-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.svcB-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  min-height: 50px;
}
.svcB-aud {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.svcB-block {
  margin-bottom: 18px;
}
.svcB-block .svc-problems { gap: 8px; }
.svcB-block .svc-problem { font-size: 13px; }
.svcB-block .svc-check { width: 16px; height: 16px; margin-top: 1px; }
.svcB-block .svc-check::after { top: 3px; left: 4px; width: 4px; height: 7px; border-right-width: 1.5px; border-bottom-width: 1.5px; }
.svcB-block .svc-tool { font-size: 12px; padding: 4px 9px; }
.svcB-block .svc-tool-x { font-size: 11px; }
.svcB-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.svcB-price { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.svcB-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.svcB-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
}
.svcB-price-prefix {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}
.svcB-price-amount {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svcB-price-unit {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}
.svcB-price-tilde { color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.svcB-price-note {
  font-size: 10.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: 4px;
}
.svcB-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  align-self: flex-end;
}
.svcB-card:hover .svcB-arrow { transform: translateX(3px); background: #d85d13; }

/* 4-card grid: 2×2 */
.svcB-grid-4 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .svcB-grid-4 { grid-template-columns: 1fr !important; }
}
