:root {
  --bg: #f6f3ed;
  --paper: #fffdfa;
  --white: #ffffff;
  --ink: #152033;
  --muted: #657185;
  --line: #ded8ce;
  --navy: #0a2036;
  --navy-2: #122e4a;
  --blue: #2165a7;
  --orange: #f58220;
  --orange-dark: #c96010;
  --green: #23735e;
  --green-soft: #e8f5ef;
  --blue-soft: #eaf2fb;
  --orange-soft: #fff0df;
  --shadow: 0 18px 46px rgba(21, 32, 51, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Arial, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(21, 32, 51, 0.08);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand {
  margin-right: auto;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 -5px 0 var(--orange);
}

.brand-name {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #415069;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #211400;
}

.button-primary:hover {
  background: #ff972e;
}

.button-secondary {
  border: 1px solid #c7d1dc;
  background: #fff;
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-line {
  border: 1px solid rgba(35, 115, 94, 0.28);
  background: var(--green-soft);
  color: #175d49;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: #fff;
  background: #0a2036;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 32, 54, 0.92) 0%, rgba(10, 32, 54, 0.84) 42%, rgba(10, 32, 54, 0.36) 100%),
    url("assets/images/sales-consultation-hero.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.64fr);
  gap: 56px;
  align-items: end;
  min-height: 650px;
  padding: 86px 0 54px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ecbf2;
}

h1 {
  max-width: 820px;
  color: inherit;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  line-height: 1.42;
}

.hero-lead {
  max-width: 730px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-price {
  display: grid;
  gap: 10px;
  align-self: end;
}

.hero-price p {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.hero-price span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-price strong {
  color: #fff;
  font-size: 20px;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}

.proof-grid p:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.proof-grid span {
  display: block;
  margin-top: 3px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.section-head {
  max-width: 820px;
}

.section-head-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.problem {
  background: var(--paper);
}

.problem-grid,
.service-layout,
.flow-grid,
.extras-grid,
.fit-grid,
.faq-grid,
.contact-grid,
.business-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-list,
.fit-list {
  display: grid;
  gap: 12px;
}

.problem-list p,
.fit-list p {
  position: relative;
  border: 1px solid rgba(18, 46, 74, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px 18px 46px;
  color: #314056;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.04);
}

.problem-list p::before,
.fit-list p::before {
  position: absolute;
  top: 26px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.price {
  background: #101927;
  color: #fff;
}

.price h2 {
  color: #fff;
}

.price .eyebrow {
  color: #9ecbf2;
}

.price .section-head > p:not(.eyebrow) {
  color: #b8c4d4;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.price-plan {
  display: grid;
  gap: 15px;
  align-content: start;
  min-height: 430px;
  border: 1px solid #2a3a51;
  border-radius: var(--radius);
  background: #172234;
  padding: 26px;
  color: #fff;
}

.price-plan-featured {
  border-color: rgba(245, 130, 32, 0.76);
  background: #21344f;
  box-shadow: 0 0 0 1px rgba(245, 130, 32, 0.14), 0 18px 38px rgba(0, 0, 0, 0.2);
}

.plan-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-plan h3 {
  color: #fff;
  font-size: 22px;
}

.price-plan strong {
  display: block;
  color: #fff;
  font-size: 25px;
  line-height: 1.35;
}

.price-plan p {
  color: #c6d0dd;
  font-size: 14px;
  line-height: 1.85;
}

.price-plan ul,
.extra-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: #d7e0ea;
  font-size: 14px;
  font-weight: 700;
}

.price-plan li::marker,
.extra-card li::marker {
  color: var(--orange);
}

.price-note {
  max-width: 860px;
  margin: 20px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  color: #cbd5e2;
  font-size: 13px;
  line-height: 1.9;
}

.service {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  border: 1px solid rgba(18, 46, 74, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.05);
}

.service-card span,
.flow-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 10px;
  font-size: 21px;
}

.service-card p,
.flow-list p,
.extra-card p,
.faq-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.compare {
  background: var(--bg);
}

.compare-table {
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.65fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row p {
  min-height: 72px;
  border-right: 1px solid var(--line);
  padding: 18px;
  color: #3a495e;
  font-size: 14px;
  line-height: 1.75;
}

.compare-row p:last-child {
  border-right: 0;
}

.compare-head {
  background: var(--navy);
}

.compare-head p {
  min-height: auto;
  color: #fff;
  font-weight: 900;
}

.compare-row:not(.compare-head) p:first-child {
  color: var(--navy);
  font-weight: 900;
}

.compare-row:not(.compare-head) p:nth-child(2) {
  background: #fff7ed;
  color: #24364c;
  font-weight: 800;
}

.flow {
  background: var(--white);
}

.flow-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 2;
}

.flow-visual {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.flow-visual img,
.extra-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  border: 1px solid rgba(18, 46, 74, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.05);
}

.flow-list strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 20px;
}

.extras {
  background: #edf4fb;
}

.extra-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.extra-card {
  border: 1px solid rgba(18, 46, 74, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.05);
}

.extra-card-wide {
  grid-column: 1 / -1;
}

.extra-card figure {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.extra-card h3 {
  margin-top: 8px;
  font-size: 22px;
}

.extra-card strong {
  display: block;
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: 22px;
}

.fit {
  background: var(--paper);
}

.faq {
  background: #fff;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list details:first-child {
  padding-top: 0;
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 36px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: -3px;
  right: 4px;
  color: var(--orange);
  font-size: 26px;
  font-weight: 400;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.contact {
  background: #101927;
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact .eyebrow {
  color: #9ecbf2;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: #c6d0dd;
  line-height: 2;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.form-row label span {
  color: #d64c37;
  font-size: 12px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d6dee8;
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(35, 100, 170, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.business {
  background: #fff;
  border-top: 1px solid var(--line);
}

.business-list {
  border-top: 1px solid var(--line);
}

.business-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.business-list dt {
  color: var(--navy);
  font-weight: 900;
}

.business-list dd {
  color: #46566b;
}

.business-list a {
  color: var(--blue);
  font-weight: 800;
}

.privacy {
  padding-top: 72px;
}

.privacy-inner {
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
}

.privacy-inner h2 {
  font-size: 32px;
}

.privacy-inner p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  color: white;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 56px;
  align-items: center;
}

.footer-brand span:last-child {
  color: #fff;
  font-size: 18px;
}

.footer-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-inner,
  .problem-grid,
  .service-layout,
  .flow-grid,
  .extras-grid,
  .fit-grid,
  .faq-grid,
  .contact-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
  }

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

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

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #d6dee8;
    border-radius: var(--radius);
    background: #fff;
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .menu-toggle span:not(.visually-hidden) + span:not(.visually-hidden) {
    margin-top: -13px;
  }

  .mobile-nav {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--line);
    background: #fffdf9;
    padding: 12px 24px 20px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    border-bottom: 1px solid #efe9df;
    padding: 13px 0;
    color: var(--navy);
    font-weight: 800;
  }

  .mobile-nav .button {
    margin-top: 8px;
    border-bottom: 0;
    color: #211400;
  }

  .proof-grid,
  .service-grid,
  .extra-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 860px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(10, 32, 54, 0.92) 0%, rgba(10, 32, 54, 0.84) 58%, rgba(10, 32, 54, 0.68) 100%),
      url("assets/images/sales-consultation-hero.jpg") center / cover no-repeat;
  }

  .hero-inner {
    min-height: 590px;
    gap: 28px;
    padding: 58px 0 38px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead,
  .section-head > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.95;
  }

  .hero-actions,
  .contact-direct {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-price,
  .proof-grid,
  .price-table,
  .service-grid,
  .extra-cards {
    grid-template-columns: 1fr;
  }

  .proof-grid p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .proof-grid p:last-child {
    border-bottom: 0;
  }

  .price-plan,
  .service-card,
  .extra-card,
  .contact-form,
  .privacy-inner {
    padding: 22px;
  }

  .price-plan {
    min-height: auto;
  }

  .business-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
