/* ====================================
   スマート卸 - style.css
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: #233043;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}
.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Colors --- */
:root {
  --blue: #185fbf;
  --blue2: #0f4f9f;
  --blue-soft: #eaf3ff;
  --lblue: #f4f9ff;
  --gray: #f6f8fc;
  --border: #d8e2f0;
  --text: #233043;
  --sub: #4b5d73;
  --nav-height: 64px;
  --radius: 14px;
  --section-white: #ffffff;
  --section-soft-blue: #f2f7ff;
  --section-soft-gray: #f7f9fc;
  --line-soft: #d7e3f2;
  --line-strong: #c8d8ec;
  --shadow-card: 0 4px 12px rgba(20, 60, 110, .06);
  --shadow-pop: 0 10px 20px rgba(20, 60, 110, .1);
}

/* --- Accessibility --- */
:focus-visible {
  outline: 3px solid rgba(24, 95, 191, .35);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --- Layout --- */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }

/* --- Common Heading --- */
.sec-title {
  text-align: center;
  font-size: clamp(1.48rem, 2.9vw, 2rem);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: 14px;
}
.sec-lead {
  text-align: center;
  color: var(--sub);
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(.95rem, 1.9vw, 1.05rem);
}
.sec-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #2b88ff);
  margin: 22px auto 52px;
  border-radius: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue {
  background: linear-gradient(140deg, var(--blue), #2b7ae0);
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 78, 153, .25);
}
.btn-blue:hover { background: linear-gradient(140deg, var(--blue2), #2369c7); }
.btn-out {
  border-color: rgba(24, 95, 191, .4);
  color: var(--blue);
  background: #fff;
}
.btn-out:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

/* --- Fade in --- */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade.on {
  opacity: 1;
  transform: none;
}

/* ====================================
   Navbar
   ==================================== */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1060px;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(24, 95, 191, .12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(34, 62, 106, .12);
  backdrop-filter: blur(8px);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 0 24px;
}
.nav-logo img { height: 36px; }
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  font-size: .88rem;
  color: #334760;
  font-weight: 700;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta .btn {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .82rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #334760;
  border-radius: 2px;
}
.mob-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  padding: 84px 28px 30px;
}
.mob-menu.open { display: flex; }
.mob-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: none;
  color: #334760;
  font-size: 1.7rem;
  cursor: pointer;
}
.mob-menu a {
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  color: #334760;
  padding: 15px 2px;
  border-bottom: 1px solid var(--border);
}
.mob-menu a:hover { color: var(--blue); }
.mob-menu .btn {
  margin-top: 20px;
}

/* ====================================
   Hero
   ==================================== */
.hero {
  padding-top: 156px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle at 12% 20%, rgba(155, 204, 255, .55) 0, rgba(155, 204, 255, 0) 42%),
    radial-gradient(circle at 88% 32%, rgba(176, 213, 255, .45) 0, rgba(176, 213, 255, 0) 38%),
    linear-gradient(180deg, #f3f9ff 0%, #e8f3ff 100%);
}
.hero-in {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(24, 95, 191, .2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 16px;
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(1.34rem, 2.45vw, 1.92rem);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: .01em;
  color: #11355f;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: clamp(.96rem, 1.95vw, 1.1rem);
  color: #32506f;
  margin: 0 auto 16px;
  max-width: 860px;
  line-height: 1.72;
}

@media (min-width: 861px) {
  .hero-sub {
    white-space: nowrap;
  }
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-btns .btn {
  min-width: 262px;
}
.hero-btns .btn-blue {
  min-height: 58px;
  font-size: .98rem;
  box-shadow: 0 12px 22px rgba(17, 78, 153, .3);
}
.hero-logo {
  max-width: min(90vw, 460px);
  width: 100%;
  height: auto;
}

/* ====================================
   悩み Section
   ==================================== */
.worries {
  background: var(--section-soft-gray);
}
.worries .sec-title {
  margin-bottom: 10px;
}
.worries .sec-lead {
  max-width: 760px;
  color: #4c6580;
}
.worries .sec-line {
  margin-bottom: 34px;
}
.worries-list {
  max-width: 860px;
  margin: 0 auto 24px;
  display: grid;
  gap: 14px;
  counter-reset: worries-item;
}
.worries-list li {
  position: relative;
  counter-increment: worries-item;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-left: 5px solid #9ebee7;
  border-radius: 12px;
  font-size: .95rem;
  line-height: 1.66;
  color: #335474;
  padding: 16px 20px 16px 64px;
  box-shadow: var(--shadow-card);
}
.worries-list li::before {
  content: counter(worries-item, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f67c5 0%, #4b95ec 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.worries-solve {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.08rem, 2.35vw, 1.32rem);
  line-height: 1.6;
  color: #114881;
  font-weight: 900;
  background: linear-gradient(180deg, #eef6ff 0%, #e7f2ff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}

/* ====================================
   こんな企業におすすめ
   ==================================== */
.fit {
  background: var(--section-soft-blue);
}
.fit .sec-title {
  margin-bottom: 10px;
}
.fit .sec-lead {
  max-width: 700px;
  color: #48617b;
}
.fit .sec-line {
  margin-bottom: 30px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.fit-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 22px 20px 20px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 6px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #1f67c5 0%, #4e9af1 100%);
}
.fit-card:hover {
  transform: translateY(-2px);
  border-color: #a9c7e7;
  box-shadow: var(--shadow-pop);
}
.fit-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e9f2ff;
  border: 1px solid #bfd4ef;
  color: #215892;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.fit-card h3 {
  font-size: 1.1rem;
  line-height: 1.32;
  margin-bottom: 11px;
  color: #113964;
  font-weight: 900;
}
.fit-card p {
  font-size: .86rem;
  line-height: 1.58;
  color: #4a6078;
}

/* ====================================
   強み Section
   ==================================== */
.strengths {
  background: var(--section-white);
}
.strengths .wrap {
  max-width: 1120px;
}
.strengths-list {
  max-width: 1020px;
  margin: 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.strength-item:last-child {
  border-bottom: none;
}
.strength-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e4efff;
  border: 1px solid #c5d9f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  flex-shrink: 0;
}
.strength-title {
  font-size: 1.07rem;
  line-height: 1.5;
  font-weight: 900;
  color: #174b85;
  margin-bottom: 7px;
}
.strength-desc {
  font-size: .9rem;
  line-height: 1.88;
  color: #47627c;
}

/* ====================================
   機能 Section
   ==================================== */
.features {
  background: var(--section-soft-blue);
}
.feature-row {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 54px;
}
.feature-row:last-of-type { margin-bottom: 0; }
.feature-row.rev .feature-text { order: 2; }
.feature-row.rev .feature-img { order: 1; }
.feature-num {
  color: #5f7a98;
  font-size: .75rem;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-title {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid #9bc2ef;
  margin-bottom: 14px;
  padding-bottom: 8px;
}
.feature-desc {
  color: #385372;
  font-size: .93rem;
  line-height: 1.92;
}
.feature-img img {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.inline-cta {
  margin-top: 42px;
  background: #ffffff;
  border: 1px dashed #c9dbf0;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: none;
}
.inline-cta-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #1c4f88;
  margin-bottom: 8px;
}
.inline-cta-text {
  color: var(--sub);
  font-size: .88rem;
  margin-bottom: 14px;
}
.inline-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.inline-cta-btns .btn {
  min-width: 184px;
  min-height: 46px;
  padding: 10px 16px;
  font-size: .86rem;
}
.inline-cta-btns .btn-blue { box-shadow: none; }

/* ====================================
   受発注管理機能（詳細）
   ==================================== */
.order-features {
  background: var(--section-white);
}
.order-features-lead {
  text-align: center;
  color: var(--sub);
  max-width: 720px;
  margin: 0 auto;
  font-size: .98rem;
}
.of-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.of-card {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-top: 4px solid #9dc1ed;
  border-radius: var(--radius);
  padding: 24px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "num icon"
    "title title"
    "desc desc";
  column-gap: 12px;
  row-gap: 7px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-card);
}
.of-card:hover {
  transform: translateY(-2px);
  border-color: #b8d0ee;
  box-shadow: 0 8px 16px rgba(20, 59, 106, .09);
}
.of-icon {
  grid-area: icon;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dceaff;
  color: var(--blue);
  margin-bottom: 0;
  justify-self: end;
  align-self: start;
}
.of-num {
  grid-area: num;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: .11em;
  align-self: center;
}
.of-title {
  grid-area: title;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: #163e73;
  font-weight: 900;
}
.of-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 14px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.of-desc {
  grid-area: desc;
  color: #47627c;
  font-size: .84rem;
  line-height: 1.6;
}
.of-desc strong {
  color: var(--blue);
  font-weight: 700;
  background: rgba(24,95,191,.08);
  padding: 1px 4px;
  border-radius: 4px;
}

/* ====================================
   選ばれる理由 Section
   ==================================== */
.reasons {
  background: var(--section-soft-gray);
}
.reasons .wrap {
  max-width: 1140px;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.reason-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-top: 4px solid #9dc1ed;
  border-radius: var(--radius);
  padding: 12px 12px 18px;
  box-shadow: 0 8px 16px rgba(22, 61, 111, .09);
}
.reason-card img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
}
.reason-title {
  font-size: 1rem;
  line-height: 1.45;
  color: #1a4c85;
  margin-bottom: 10px;
  font-weight: 900;
}
.reason-desc {
  font-size: .87rem;
  color: var(--sub);
  line-height: 1.8;
}

/* ====================================
   導入ステップ Section
   ==================================== */
.steps { background: var(--section-white); }
.steps-list {
  max-width: 840px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding-bottom: 30px;
}
.step:last-child { padding-bottom: 0; }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, var(--blue), #2a7adf);
  box-shadow: 0 8px 16px rgba(18, 76, 146, .25);
}
.step-circle .s-label {
  font-size: .54rem;
  letter-spacing: .09em;
  line-height: 1;
  opacity: .9;
}
.step-circle .s-num {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  margin-top: 6px;
  background: #c4d9f2;
}
.step:last-child .step-line { display: none; }
.step-body {
  border: 1px solid #dce8f7;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fbfdff;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  background: #f1f6fd;
  border: 1px solid #d4e1f2;
  border-radius: 999px;
  color: #5a7391;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 9px;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1rem;
  color: #1d4f89;
  font-weight: 900;
  margin-bottom: 6px;
}
.step-desc {
  color: var(--sub);
  font-size: .88rem;
  line-height: 1.8;
}
.step.is-key .step-body {
  background: #f1f7ff;
  border-color: #b9d2ef;
  box-shadow: 0 8px 18px rgba(20, 75, 145, .09);
}
.step.is-key .step-title {
  color: #123f72;
}
.step.is-key .step-tag {
  background: #e2efff;
  border-color: #bdd3ef;
  color: #1b588f;
}

.support-note {
  padding: 0 0 30px;
  background: var(--section-white);
}
.support-note-text {
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
  color: #35597c;
  font-size: .9rem;
  font-weight: 700;
  background: #f6faff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid #8ab2e3;
  border-radius: 10px;
  padding: 13px 16px;
}

/* ====================================
   FAQ Section
   ==================================== */
.faq {
  background: var(--section-soft-blue);
}
.faq .sec-title {
  margin-bottom: 10px;
}
.faq .sec-lead {
  max-width: 760px;
  color: #4a627c;
}
.faq .sec-line {
  margin-bottom: 34px;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-item.open {
  border-color: #a9c6e7;
  box-shadow: var(--shadow-pop);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 17px 20px;
  cursor: pointer;
  transition: background-color .2s ease;
}
.faq-q:hover,
.faq-item.open .faq-q { background: #f6faff; }
.faq-q:focus-visible {
  outline: 2px solid #8fb8e6;
  outline-offset: -2px;
  background: #f4f9ff;
}
.faq-q-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1e67c6 0%, #4a94eb 100%);
  border: 1px solid #2f7fd8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .79rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(22, 80, 151, .24);
}
.faq-q-text {
  flex: 1;
  font-size: .99rem;
  line-height: 1.55;
  font-weight: 800;
  color: #1f4167;
}
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #bdd2ed;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 700;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.faq-a {
  border-top: 1px solid #d8e6f7;
  background: #fbfdff;
  color: #3f5c78;
  font-size: .89rem;
  line-height: 1.76;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px 18px 69px;
  transition: height .34s cubic-bezier(.22,.61,.36,1), opacity .22s ease, padding-top .34s cubic-bezier(.22,.61,.36,1);
  will-change: height, opacity;
}
.faq-item.open .faq-a {
  opacity: 1;
  padding-top: 14px;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing {
  background: var(--section-white);
}
.pricing .sec-title {
  margin-bottom: 10px;
}
.pricing .sec-lead {
  max-width: 760px;
  color: #4d667f;
}
.pricing .sec-line {
  margin-bottom: 28px;
}
.pricing-assist {
  max-width: 860px;
  margin: 0 auto 20px;
  display: grid;
  gap: 9px;
}
.pricing-assist li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 10px 13px;
  color: #36536f;
  font-size: .84rem;
  line-height: 1.58;
  font-weight: 700;
}
.pricing-assist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #e9f2ff;
  border: 1px solid #bfd3ee;
  color: #1f5fae;
  font-size: .67rem;
  font-weight: 900;
}
.pricing-table-wrap {
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
  background: #fff;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  table-layout: fixed;
}
.pricing-table col.pricing-col-plan { width: 30%; }
.pricing-table col.pricing-col-initial,
.pricing-table col.pricing-col-monthly { width: 35%; }
.pricing-table thead th {
  border-right: 1px solid rgba(255, 255, 255, .2);
}
.pricing-table thead th:last-child {
  border-right: none;
}
.pricing-table th {
  background: linear-gradient(180deg, #1b5ead 0%, #19529a 100%);
  color: #fff;
  font-size: .87rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 14px 13px;
  text-align: center;
  white-space: nowrap;
}
.pricing-table td {
  border-bottom: 1px solid #dde7f5;
  text-align: center;
  color: #2e4a66;
  font-size: .89rem;
  line-height: 1.52;
  padding: 14px 13px;
  background: #fff;
  vertical-align: middle;
}
.pricing-table tr:nth-child(even) td {
  background: #f7fbff;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  padding-left: 12px;
  padding-right: 2px;
  white-space: nowrap;
}
.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
  color: #1b4f88;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.plan-name {
  display: block;
  font-size: .97rem;
  line-height: 1.4;
  font-weight: 800;
  color: #1a4878;
  white-space: nowrap;
  word-break: keep-all;
}
.pricing-cta-box {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 32px 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #d6e3f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(32, 84, 159, 0.08);
  text-align: center;
}
.pricing-cta-title {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.6;
  color: #1c4f88;
}
.pricing-cta-text {
  max-width: 560px;
  margin: 0 auto;
  color: var(--sub);
  font-size: .9rem;
  line-height: 1.8;
}
.pricing-cta-btns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-cta-btns .btn {
  min-width: 184px;
  min-height: 46px;
  padding: 10px 16px;
  font-size: .86rem;
}
.pricing-cta-btns .btn-blue { box-shadow: none; }
.pricing-note {
  max-width: 860px;
  margin: 16px auto 0;
  text-align: left;
  color: #536a84;
  font-size: .82rem;
  line-height: 1.65;
  background: #f6faff;
  border: 1px solid var(--line-soft);
  border-left: 4px solid #8eb3e1;
  border-radius: 10px;
  padding: 11px 13px;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-sec {
  background: var(--section-soft-blue);
  padding: 92px 0;
  color: #233043;
}
.cta-sec h2 {
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.45;
  color: #123f72;
  margin-bottom: 16px;
}
.cta-lead {
  text-align: center;
  color: #4b5d73;
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: .96rem;
}
.cta-points {
  max-width: 880px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.cta-points li {
  text-align: center;
  background: rgba(24, 95, 191, .08);
  border: 1px solid rgba(24, 95, 191, .15);
  border-radius: 10px;
  color: #2c4e73;
  padding: 8px 10px;
  font-size: .79rem;
  font-weight: 700;
}
.contact-form {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(20, 60, 120, .08);
  padding: 28px 26px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: #2a4764;
  font-weight: 700;
}
.form-field em {
  color: #c83f3f;
  font-style: normal;
}
.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #ccd9ea;
  border-radius: 10px;
  background: #fff;
  color: #213b57;
  font-size: .93rem;
  line-height: 1.6;
  padding: 12px 14px;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #8aa0b8;
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(24, 95, 191, .15);
  outline-offset: 0;
}
.contact-textarea {
  resize: vertical;
  min-height: 140px;
}
.privacy-note {
  color: #5f7287;
  font-size: .78rem;
  margin: 10px 0 16px;
}
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cta-sec .btn-white {
  width: 100%;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(140deg, #185fbf, #2b7ae0);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(17, 78, 153, .25);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.cta-sec .btn-white:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 12px 24px rgba(17, 78, 153, .3);
}
.cta-sec .btn-white:focus-visible {
  outline: 3px solid rgba(24, 95, 191, .2);
  outline-offset: 2px;
}
.cta-sec .btn-white:disabled {
  opacity: .76;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}
.form-status {
  min-height: 1.7em;
  margin-top: 12px;
  font-size: .88rem;
  font-weight: 700;
}
.form-status.is-loading { color: #355d86; }
.form-status.is-success { color: #2f7d42; }
.form-status.is-error { color: #b14545; }

/* ====================================
   Sticky CTA
   ==================================== */
.sticky-cta {
  display: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .2s, transform .2s;
}
.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(140deg, #1a66c7, #2781ec);
  box-shadow: 0 10px 20px rgba(14, 69, 136, .3);
}

/* ====================================
   Footer
   ==================================== */
footer {
  background: #122035;
  color: rgba(255, 255, 255, .7);
  padding: 42px 0 24px;
}
.footer-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding-bottom: 22px;
  margin-bottom: 16px;
}
.footer-logo {
  line-height: 1;
}
.footer-logo img {
  display: block;
  width: 148px;
  height: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  font-size: .82rem;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  text-align: center;
  font-size: .76rem;
  color: rgba(255, 255, 255, .45);
}

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 1024px) {
  .feature-row { gap: 32px; }
  .of-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .navbar {
    top: 10px;
    width: calc(100% - 22px);
  }
  .nav-in {
    min-height: 58px;
    padding: 0 16px;
  }
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding-top: 126px;
    padding-bottom: 44px;
  }
  .hero-brand { margin-bottom: 8px; }
  .hero-btns .btn,
  .inline-cta-btns .btn {
    width: 100%;
    min-width: 0;
  }

  .fit-grid,
  .reasons-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .cta-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 12px;
  }
  .cta-sec {
    padding: 80px 0;
  }
  .cta-lead {
    margin-bottom: 20px;
  }
  .contact-form {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .feature-row,
  .feature-row.rev {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .feature-row.rev .feature-text,
  .feature-row.rev .feature-img {
    order: unset;
  }

  .step { grid-template-columns: 62px 1fr; }
  .step-tag {
    font-size: .64rem;
    padding: 3px 8px;
    margin-bottom: 7px;
  }
  .worries .sec-line { margin-bottom: 26px; }
  .worries-list {
    margin-bottom: 18px;
    gap: 10px;
  }
  .worries-list li {
    font-size: .9rem;
    line-height: 1.62;
    padding: 14px 14px 14px 56px;
  }
  .worries-list li::before {
    left: 14px;
    width: 26px;
    height: 26px;
    font-size: .66rem;
  }
  .worries-solve {
    font-size: clamp(1rem, 2.9vw, 1.16rem);
    padding: 14px 14px;
  }
  .faq .sec-line { margin-bottom: 26px; }
  .faq-list { gap: 10px; }
  .faq-q {
    min-height: 62px;
    padding: 15px 15px;
    gap: 12px;
  }
  .faq-q-badge {
    width: 31px;
    height: 31px;
    font-size: .74rem;
  }
  .faq-q-text {
    font-size: .92rem;
    line-height: 1.5;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .faq-a {
    font-size: .86rem;
    line-height: 1.72;
    padding: 0 16px 16px 58px;
  }
  .pricing-assist {
    margin-bottom: 16px;
    gap: 8px;
  }
  .pricing-assist li {
    font-size: .81rem;
    padding: 9px 11px;
    gap: 8px;
  }
  .pricing-assist li::before {
    width: 18px;
    height: 18px;
    font-size: .62rem;
  }
  .pricing-table {
    min-width: 600px;
  }
  .pricing-table th {
    font-size: .82rem;
    padding: 12px 10px;
  }
  .pricing-table td {
    font-size: .85rem;
    padding: 13px 10px;
  }
  .pricing-table td:first-child {
    padding-left: 14px;
  }
  .plan-name {
    font-size: .92rem;
  }
  .pricing-note {
    font-size: .79rem;
    padding: 10px 11px;
  }
  .pricing-cta-box {
    margin-top: 24px;
    padding: 26px 20px;
    border-radius: 14px;
  }
  .pricing-cta-title {
    font-size: 1.02rem;
    margin-bottom: 12px;
  }
  .pricing-cta-text {
    font-size: .85rem;
    line-height: 1.75;
  }
  .pricing-cta-btns {
    margin-top: 20px;
  }
  .pricing-cta-btns .btn {
    width: 100%;
    max-width: 280px;
  }
  .fit .sec-line { margin-bottom: 24px; }
  .fit-card {
    padding: 18px 15px 16px 19px;
    box-shadow: 0 4px 10px rgba(24, 73, 133, .07);
  }
  .fit-card::before {
    width: 5px;
    top: 12px;
    bottom: 12px;
  }
  .fit-tag {
    font-size: .7rem;
    min-height: 22px;
    padding: 2px 8px;
    margin-bottom: 8px;
  }
  .fit-card h3 {
    font-size: 1.01rem;
    line-height: 1.34;
    margin-bottom: 8px;
  }
  .fit-card p {
    font-size: .84rem;
    line-height: 1.56;
  }
  .strength-item {
    padding: 18px 16px;
    gap: 12px;
  }
  .strength-icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
  .strength-title { font-size: 1rem; }
  .strength-desc { font-size: .88rem; }
  .support-note-text {
    font-size: .84rem;
    text-align: center;
    border-left-width: 1px;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    z-index: 140;
  }

  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .wrap { padding: 0 16px; }

  .hero-title { letter-spacing: 0; }
  .hero-sub {
    margin-bottom: 14px;
    font-size: .9rem;
    line-height: 1.65;
  }
  .step-tag {
    font-size: .62rem;
    padding: 2px 7px;
  }

  .worries-list li {
    padding: 13px 12px 13px 52px;
  }
  .worries-list li::before {
    left: 12px;
    width: 24px;
    height: 24px;
  }
  .worries-solve {
    font-size: .99rem;
    line-height: 1.55;
    padding: 12px 12px;
  }

  .fit .sec-lead { font-size: .9rem; }
  .fit-card {
    padding: 16px 14px 15px 18px;
  }
  .fit-card h3 {
    font-size: .97rem;
  }
  .fit-card p {
    font-size: .83rem;
  }

  .faq-q {
    min-height: 58px;
    gap: 10px;
    padding: 13px 12px;
  }
  .faq-q-badge {
    width: 28px;
    height: 28px;
    font-size: .68rem;
  }
  .faq-q-text {
    font-size: .9rem;
    line-height: 1.48;
  }
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.02rem;
  }
  .faq-a {
    font-size: .84rem;
    line-height: 1.68;
    padding: 0 12px 13px 48px;
  }

  .inline-cta { padding: 20px 14px; }
  .cta-sec {
    padding: 68px 0;
  }
  .cta-lead {
    font-size: .9rem;
    margin-bottom: 16px;
  }
  .contact-form {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .form-field {
    font-size: .84rem;
  }
  .contact-input,
  .contact-textarea {
    font-size: .9rem;
    padding: 11px 12px;
  }
  .contact-textarea {
    min-height: 128px;
  }
  .privacy-note {
    font-size: .76rem;
    margin: 8px 0 14px;
  }
  .cta-sec .btn-white {
    min-height: 52px;
    font-size: .96rem;
  }
  .pricing .sec-line { margin-bottom: 22px; }
  .pricing-assist {
    margin-bottom: 14px;
    gap: 7px;
  }
  .pricing-assist li {
    font-size: .78rem;
    line-height: 1.55;
    padding: 8px 10px;
  }
  .pricing-assist li::before {
    width: 17px;
    height: 17px;
    font-size: .58rem;
    margin-top: 0;
  }
  .cta-points {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cta-points li {
    font-size: .76rem;
    padding: 7px 9px;
  }

  .pricing-table {
    min-width: 560px;
  }
  .pricing-table th {
    font-size: .79rem;
    padding: 10px 9px;
  }
  .pricing-table td {
    padding: 11px 9px;
    font-size: .83rem;
  }
  .pricing-table td:first-child {
    padding-left: 11px;
  }
  .plan-name {
    font-size: .88rem;
  }
  .pricing-note {
    font-size: .77rem;
    line-height: 1.6;
    padding: 10px 10px;
  }
  .pricing-cta-box {
    margin-top: 22px;
    padding: 22px 16px;
    border-radius: 12px;
  }
  .pricing-cta-title {
    font-size: .95rem;
    margin-bottom: 10px;
  }
  .pricing-cta-text {
    font-size: .82rem;
    line-height: 1.72;
  }
  .pricing-cta-btns {
    margin-top: 18px;
  }
  .pricing-cta-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}
