/* ============================================
   OmiseWeb v2 - Page-specific Styles
   ============================================ */


/* ============================================
   TOP / Hero (V2: 巨大ロゴ + モックアップカード)
   ============================================ */
.hero {
  position: relative;
  padding: 120px var(--pad-x) 0;
  overflow: hidden;
  background: var(--alabaster);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
  min-height: 600px;
}

/* Hero left */
.hero-left {
  padding-top: 0;
  padding-left: 70px;
  position: relative;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-title .nowrap {
  white-space: nowrap;
}

.hero-title .script {
  font-family: var(--f-script);
  font-weight: 500;
  color: var(--slate);
  font-size: 0.9em;
}

.hero-lead {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-mid);
  max-width: 420px;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.hero-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 30px;
  bottom: -4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.hero-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-link i {
  transition: transform 0.3s var(--ease);
}

.hero-link:hover i {
  transform: translateX(6px);
}

/* Hero right: floating mockup cards */
.hero-right {
  position: relative;
  height: 540px;
}

.mockup {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.18), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  border: 1px solid var(--line-soft);
  transition: transform 0.6s var(--ease);
}

.mockup:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  z-index: 10;
}

.mockup-img {
  width: 100%;
  height: 62%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--alabaster-soft) 0%, var(--alabaster) 100%);
}

.mockup-body {
  padding: 14px 16px 18px;
  background: #fff;
}

.mockup-eyebrow {
  font-family: var(--f-en);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mockup-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Card positions */
.mockup-1 {
  width: 300px;
  height: 220px;
  top: 0;
  right: 180px;
  transform: rotate(-3deg);
  z-index: 3;
}

.mockup-2 {
  width: 340px;
  height: 250px;
  top: 80px;
  right: 0;
  transform: rotate(3deg);
  z-index: 4;
}

.mockup-3 {
  width: 240px;
  height: 200px;
  top: 290px;
  right: 240px;
  transform: rotate(-4deg);
  z-index: 5;
}

.mockup-4 {
  width: 270px;
  height: 220px;
  top: 320px;
  right: 30px;
  transform: rotate(2deg);
  z-index: 6;
}

/* Hero bottom: huge wordmark */
.hero-wordmark {
  position: relative;
  margin-top: -20px;
  padding: 0 var(--pad-x) 80px;
  z-index: 1;
}

.hero-wordmark-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.hero-wordmark-sub {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-wordmark-logo {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  line-height: 0.9;
}

.hero-wordmark-main {
  font-family: var(--f-en);
  font-size: clamp(70px, 13.5vw, 200px);
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--ink);
  line-height: 0.85;
}

.hero-wordmark-script {
  font-family: var(--f-script);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 500;
  color: var(--slate);
  line-height: 1;
  margin-bottom: clamp(8px, 1.2vw, 20px);
  white-space: nowrap;
}

/* SCROLL indicator (left) */
.scroll-indicator {
  position: absolute;
  top: 50%;
  left: clamp(14px, 2vw, 24px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
  z-index: 3;
}

.scroll-indicator-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-indicator-text span {
  display: block;
  line-height: 1;
}

.scroll-indicator-line {
  width: 1px;
  height: 60px;
  background: var(--ink);
  animation: scroll-pulse 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Round badge (right top in hero) */
.hero-badge {
  position: absolute;
  top: 100px;
  right: clamp(20px, 3vw, 50px);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 8px 24px -8px rgba(10, 10, 10, 0.12);
}

.hero-badge-icon {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-badge-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 0 6px;
}

.hero-badge-text-en {
  font-family: var(--f-en);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================
   Common Issue section (white, 6 card grid)
   based on reference image 1
   ============================================ */
.issues {
  padding: clamp(80px, 12vw, 140px) 0;
  background: #fff;
  position: relative;
}

.issues-head {
  text-align: center;
  margin-bottom: 60px;
}

.issues-head .section-tag {
  color: var(--ink);
  margin-bottom: 16px;
  display: inline-block;
}

.issues-head .section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
}

.issues-lead {
  display: none;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.issue-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.issue-card:hover {
  transform: translateY(-3px);
  border-color: var(--slate);
  box-shadow: 0 20px 40px -25px rgba(83, 104, 120, 0.25);
}

.issue-card:hover .issue-icon {
  background: var(--slate);
  color: #fff;
}

.issue-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-tint);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.issue-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.issue-num {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.issue-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--ink);
  margin-top: -8px;
}

.issue-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-top: 4px;
}

.issues-bottom {
  margin-top: 64px;
  text-align: center;
}

.issues-bottom p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ============================================
   Support section (お店のWeb周りをまるごとサポート)
   based on reference image 2
   ============================================ */
.support {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm);
  position: relative;
}

.support-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.support-head .section-tag {
  display: block;
  margin-bottom: 18px;
}

.support-head .section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
}

.support-head-lead {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-mid);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.08);
}

.support-item {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease);
  position: relative;
}

.support-item:hover {
  background: var(--bg-warm-2);
}

.support-grid .support-item:nth-child(3n) {
  border-right: none;
}

.support-grid .support-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.support-item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.support-num {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.support-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--slate-tint);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.support-item:hover .support-icon {
  background: var(--slate);
  color: #fff;
}

.support-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.support-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-mid);
}

.support-bottom {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.support-bottom-script {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}

.support-bottom-script::before,
.support-bottom-script::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-mute);
}

/* ============================================
   Works intro (TOP section) — 制作サンプル抜粋
   ============================================ */
.works-intro {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm-2);
}

.works-intro-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.works-intro-head .section-tag {
  justify-content: center;
}
.works-intro-lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-mid);
}

.works-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(48px, 7vw, 72px);
}

.work-thumb {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.work-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.18);
}
.work-thumb-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.work-thumb-img::before {
  content: '';
  display: block;
  padding-bottom: 72%;
}
.work-thumb-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.work-thumb:hover .work-thumb-img img {
  transform: scale(1.05);
}
.work-thumb-meta {
  padding: 22px 24px 26px;
}
.work-thumb-num {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--slate);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.work-thumb-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.work-thumb-genre {
  display: block;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}

.works-intro-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.works-intro-bottom-script {
  font-family: var(--f-script);
  font-size: 20px;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.works-intro-bottom-script::before,
.works-intro-bottom-script::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-mute);
}

@media (max-width: 900px) {
  .works-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-thumb:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .works-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-thumb:last-child {
    max-width: none;
  }
  .work-thumb-meta {
    padding: 18px 20px 22px;
  }
  .work-thumb-name {
    font-size: 20px;
  }
}

/* ============================================
   Pricing intro (TOP section)
   ============================================ */
.pricing-intro {
  padding: clamp(80px, 12vw, 140px) 0;
  background: #fff;
}

.pricing-intro-head {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-intro-head .section-tag {
  display: block;
  margin-bottom: 16px;
}

.pricing-intro-head .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.pricing-intro-head p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.85;
}

.pricing-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.18);
}

.plan-card.featured {
  border-color: var(--slate);
  border-width: 2px;
  padding-top: 50px;
}

.plan-card .plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.plan-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 18px;
}

.plan-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 22px;
  border: none;
  padding: 0;
}

.plan-price-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.plan-price-unit {
  font-size: 12px;
  color: var(--ink-mid);
  margin-left: 2px;
}

.plan-blurb {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 24px;
  min-height: 48px;
}

.plan-keypoints {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
  width: 100%;
  flex: 1;
}

.plan-keypoints li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.plan-keypoints li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--ink);
  font-size: 10px;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
  align-self: center;
}

.plan-cta i {
  font-size: 11px;
  transition: transform 0.3s var(--ease);
}

.plan-card:hover .plan-cta {
  border-bottom-color: var(--ink);
}

.plan-card:hover .plan-cta i {
  transform: translateX(4px);
}

/* Pricing intro CTA band (below 4 cards) */
.pricing-intro-bottom {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.pricing-intro-bottom-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #e6e6e3 0%, #cdcdc8 100%);
  overflow: hidden;
}

.pricing-intro-bottom-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-intro-bottom-body h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--ink);
}

.pricing-intro-bottom-body p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-mid);
}

/* ============================================
   Final CTA section
   ============================================ */
.final-cta {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #fff;
}

.final-cta-card {
  background: var(--onyx);
  color: #fff;
  border-radius: clamp(20px, 3vw, 36px);
  padding: clamp(50px, 7vw, 80px) clamp(36px, 5vw, 70px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(131, 152, 168, 0.18), transparent 65%);
  transform: translate(-50%, -60%);
  pointer-events: none;
  z-index: 0;
}

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

.final-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--slate-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.final-cta-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--slate-soft);
}

.final-cta-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 40px;
}

.final-cta-title .script {
  font-family: var(--f-script);
  font-weight: 500;
  color: var(--slate-soft);
}

.final-cta-text {
  font-size: 14px;
  color: #C8C8C8;
  line-height: 1.95;
  max-width: 520px;
  margin: 0 auto 36px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta-card .btn-light {
  background: #fff;
  color: var(--ink);
}

.final-cta-card .btn-light:hover {
  background: var(--ink);
  color: #fff;
}

.final-cta-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.final-cta-card .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

/* ============================================
   Services page - accordion
   ============================================ */
.svc-list {
  padding: 30px 0 90px;
}

.svc-row {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}

.svc-row:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-row-head {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 30px;
  align-items: center;
}

.svc-row-num {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-mute);
}

.svc-row-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.svc-row-lead {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.85;
}

.svc-row-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.4s var(--ease);
}

.svc-row.open .svc-row-toggle {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: rotate(45deg);
}

.svc-row-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.svc-row.open .svc-row-body {
  max-height: 700px;
}

.svc-row-detail {
  padding: 32px 0 8px 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.svc-detail-block h4 {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.svc-detail-block ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-detail-block li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.svc-detail-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--ink);
}

/* ============================================
   Pricing page - Detail (V4)
   ============================================ */
.pricing-detail {
  padding: 30px 0 90px;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.pricing-detail-card:hover {
  border-color: var(--slate);
  transform: translateY(-3px);
}

.pricing-detail-card.featured {
  border-color: var(--slate);
  border-width: 2px;
  padding-top: 44px;
}

.pricing-detail-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-detail-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.pricing-detail-price {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-detail-price .unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-left: 2px;
  letter-spacing: 0;
}

.pricing-detail-block {
  text-align: left;
  margin-bottom: 22px;
}

.pricing-detail-block:last-child {
  margin-bottom: 0;
}

.pricing-detail-block h4 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.pricing-detail-block:first-of-type h4 {
  padding-top: 0;
  border-top: none;
}

.check-list,
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li,
.dot-list li {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--ink);
  font-size: 10px;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

/* Option section */
.option-section {
  margin-top: 70px;
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
}

.option-head {
  text-align: center;
  margin-bottom: 44px;
}

.option-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.option-lead {
  font-size: 13px;
  color: var(--ink-mid);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.option-item {
  text-align: center;
  padding: 24px 14px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.option-item:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

.option-icon {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
}

.option-name {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.option-price {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1;
}

.option-desc {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* Pricing CTA strip */
.pricing-cta-strip {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.pricing-cta-strip-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink);
  flex-shrink: 0;
}

.pricing-cta-strip-body h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}

.pricing-cta-strip-body p {
  font-size: 13px;
  color: var(--ink-mid);
}

/* ============================================
   Pricing page (Legacy - kept for backward compat)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
}

.plan {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 26px;
}

.plan .plan-name {
  margin-bottom: 0;
}

.plan-sub {
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.plan-featured .plan-sub {
  color: #888;
}

.plan .plan-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 24px;
}

.plan-featured .plan-price {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan .plan-price-num {
  font-size: 44px;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.plan-featured .plan-list li {
  color: #DDD;
}

.plan-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ink);
  font-size: 10px;
}

.plan-list li.muted {
  color: var(--ink-mute);
  opacity: 0.55;
}

.plan-list li.muted::before {
  content: '\f068';
  color: var(--ink-mute);
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.plan-featured .btn-light {
  background: #fff;
  color: var(--ink);
}

.plan-featured .btn-light:hover {
  background: var(--ink);
  color: #fff;
}

/* Guarantee box */
.guarantee {
  margin: 70px 0;
  padding: 38px 44px;
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.guarantee-body h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.guarantee-body p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.guarantee-tag {
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* FAQ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.faq-num {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--slate);
}

.faq-q-text {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 11px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--slate);
  border-color: var(--slate);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 16px 0 4px 36px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.95;
}

/* ============================================
   Trial / Contact - form layout
   ============================================ */
.form-layout {
  padding: 40px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 120px;
}

.aside-block + .aside-block {
  margin-top: 36px;
}

.aside-eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.aside-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.aside-text {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.95;
}

.aside-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.aside-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.aside-step:first-child {
  border-top: 1px solid var(--line);
}

.aside-step-num {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.aside-step-title {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.aside-step-text {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.75;
}

.aside-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.contact-method {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

a.contact-method:hover {
  opacity: 0.7;
}

a.contact-method:hover .contact-method-icon {
  background: var(--ink);
  color: #fff;
}

.contact-method:first-child {
  border-top: 1px solid var(--line);
}

.contact-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.contact-method-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.contact-method-text {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .pricing-intro-grid,
  .pricing-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-right {
    height: 480px;
  }
  .mockup-1 { width: 260px; height: 190px; right: 130px; }
  .mockup-2 { width: 290px; height: 220px; right: 0; top: 70px; }
  .mockup-3 { width: 200px; height: 180px; top: 250px; right: 200px; }
  .mockup-4 { width: 230px; height: 190px; top: 280px; right: 20px; }
  .hero-left {
    padding-left: 40px;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 100px var(--pad-x) 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 30px 0 40px;
    min-height: auto;
  }

  .hero-left {
    padding-left: 0;
    padding-right: 130px;
  }

  .hero-right {
    height: 460px;
  }

  .mockup-1 { width: 240px; height: 170px; right: auto; left: 5%; top: 0; }
  .mockup-2 { width: 260px; height: 200px; right: 0; top: 100px; }
  .mockup-3 { width: 180px; height: 170px; right: auto; left: 0; top: 230px; }
  .mockup-4 { width: 230px; height: 180px; right: 5%; top: 290px; }

  .scroll-indicator {
    display: none;
  }

  .hero-badge {
    width: 96px;
    height: 96px;
    top: 95px;
    right: var(--pad-x);
  }

  .hero-badge-icon {
    font-size: 18px;
  }

  .hero-badge-text {
    font-size: 8px;
    padding: 0 4px;
  }

  .hero-wordmark {
    margin-top: 0;
    padding-bottom: 60px;
  }

  .hero-wordmark-main {
    font-size: 64px;
    letter-spacing: -0.05em;
  }

  .hero-wordmark-script {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .issues-head,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .issues-lead {
    justify-self: stretch;
    max-width: none;
  }

  .issues-grid,
  .pricing-intro-grid,
  .pricing-detail-grid,
  .option-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .support-grid .support-item:nth-child(3n) {
    border-right: 1px solid var(--line-soft);
  }

  .support-grid .support-item:nth-child(2n) {
    border-right: none;
  }

  .support-grid .support-item:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .support-grid .support-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .pricing-intro-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .pricing-intro-bottom-visual {
    max-width: 280px;
    margin: 0 auto;
  }

  .pricing-intro-bottom .btn {
    justify-self: center;
  }

  .pricing-cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 28px 24px;
  }

  .pricing-cta-strip-icon {
    margin: 0 auto;
  }

  .pricing-cta-strip .btn {
    justify-self: center;
  }

  .support-grid {
    background: transparent;
    box-shadow: none;
    gap: 14px;
  }

  .support-item {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 28px 26px;
  }

  .support-grid .support-item:nth-child(3n) {
    border-right: 1px solid var(--line-soft);
  }

  .support-grid .support-item:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .pricing-grid {
    gap: 18px;
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
    padding: 28px;
  }

  .form-aside {
    position: static;
  }

  .svc-row-head {
    grid-template-columns: 40px 1fr auto;
    gap: 18px;
  }

  .svc-row-lead {
    display: none;
  }

  .svc-row-detail {
    padding: 28px 0 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px var(--pad-x) 20px;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
  }

  .hero-title .nowrap {
    white-space: nowrap;
  }

  .page-hero-title br,
  .section-title br,
  .final-cta-title br {
    display: none;
  }

  .page-hero-title {
    font-size: 34px;
    line-height: 1.35;
  }

  .final-cta-title {
    line-height: 1.4;
  }

  .hero-right {
    height: 380px;
  }

  .mockup-1 { width: 200px; height: 140px; left: 0; top: 0; }
  .mockup-2 { width: 230px; height: 170px; right: 0; top: 70px; }
  .mockup-3 { width: 160px; height: 150px; left: 0; top: 210px; }
  .mockup-4 { width: 195px; height: 150px; right: 0; top: 240px; }

  .mockup-title {
    font-size: 11px;
    line-height: 1.3;
  }

  .mockup-eyebrow {
    font-size: 7px;
  }

  .mockup-body {
    padding: 10px 12px 12px;
  }

  .hero-wordmark {
    padding-bottom: 40px;
  }

  .hero-wordmark-main {
    font-size: 52px;
  }

  .hero-wordmark-script {
    font-size: 22px;
  }

  .hero-badge {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-link {
    justify-content: center;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .support-grid .support-item:nth-child(3n),
  .support-grid .support-item:nth-child(2n) {
    border-right: 1px solid var(--line-soft);
  }
}

/* ============================================
   Apply page - 正式申し込みフォーム
   ============================================ */
.apply-layout {
  padding: 40px 0 100px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.apply-aside {
  position: sticky;
  top: 110px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.apply-section {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  transition: border-color 0.3s var(--ease);
}

.apply-section:hover {
  border-color: var(--line);
}

.apply-section-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}

.apply-section-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.apply-section-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
  margin-top: 6px;
}

.apply-section-lead {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.75;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--line);
  background: var(--bg-warm-2);
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ink-mute);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--slate);
  border-color: var(--slate);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-item:has(input:checked) {
  background: #fff;
  border-color: var(--slate);
}

.checkbox-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Confirm note */
.apply-confirm-note {
  background: var(--bg-warm);
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apply-confirm-note p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

.apply-confirm-note p::before {
  content: '・';
  color: var(--ink-mute);
  margin-right: 2px;
}

/* Submit */
.apply-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.apply-submit .form-note {
  flex: 1;
  min-width: 240px;
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.7;
}

.apply-submit .btn {
  min-width: 240px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .apply-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .apply-section {
    padding: 24px 22px;
  }

  .apply-section-head {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .apply-section-num {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .apply-section-title {
    font-size: 17px;
    margin-top: 4px;
  }

  .apply-section-lead {
    font-size: 12px;
  }

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

  .apply-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .apply-submit .btn {
    width: 100%;
  }
}

/* ============================================
   Apply form - plan choice radio cards & dynamic details
   ============================================ */
.plan-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.plan-choice {
  display: block;
  position: relative;
  cursor: pointer;
}

.plan-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-choice-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--bg-warm);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.plan-choice:hover .plan-choice-body {
  background: var(--bg-warm-2);
  border-color: var(--line);
}

.plan-choice input[type="radio"]:checked + .plan-choice-body {
  background: #fff;
  border-color: var(--slate);
}

.plan-choice input[type="radio"]:focus-visible + .plan-choice-body {
  outline: 2px solid var(--slate);
  outline-offset: 2px;
}

.plan-choice-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.plan-choice-price {
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.plan-choice-desc {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-top: 2px;
}

/* Plan-based dynamic details */
.plan-details {
  margin-top: 0;
}

.plan-details-block {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.plan-details-block.active {
  display: block;
}

.plan-details-block.in {
  opacity: 1;
  transform: translateY(0);
}

.plan-details-note {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border-radius: 10px;
  align-items: flex-start;
}

.plan-details-note i {
  color: var(--ink);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-details-note p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 600px) {
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }

  .plan-choice-body {
    padding: 16px 18px;
  }
}
