:root {
  --bg: #fbf3e6;
  --bg-soft: #f3e4cf;
  --text: #372315;
  --muted: #7b6450;
  --line: #e3ceb2;
  --dark: #4a2f1e;
  --dark-2: #6f472b;
  --accent: #b8793d;
  --accent-soft: #fff1dd;
  --card: rgba(255, 250, 242, 0.86);
  --shadow: 0 24px 80px rgba(93, 57, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 121, 61, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf3e6, #fffaf2 52%, #f3e4cf);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", system-ui, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(232, 234, 237, 0.85);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 10px 40px rgba(93, 57, 29, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  height: 100%;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a,
.nav-menu-button {
  padding: 10px 13px;
  border: 0;
  border-radius: 999px;
  color: #6f5846;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav-menu-button:hover,
.nav-menu.is-open .nav-menu-button {
  color: var(--text);
  background: #f7ead7;
}

.nav-menu {
  position: relative;
}

.service-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 310px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(232, 234, 237, 0.95);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu.is-open .service-menu,
.nav-menu:focus-within .service-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-menu a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text);
}

.service-menu a:hover {
  border-color: var(--line);
  background: #f8fafc;
}

.service-menu span {
  font-size: 15px;
  font-weight: 900;
}

.service-menu small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.service-menu a.is-disabled {
  opacity: 0.52;
}

.section-pad {
  padding: 112px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(251, 243, 230, 0.9), rgba(255, 250, 242, 0.96)),
    radial-gradient(circle at 80% 18%, rgba(184, 121, 61, 0.18), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.hero-lead {
  color: #4f3421;
  font-size: 18px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: #fff8ee;
  background: var(--dark);
  box-shadow: 0 14px 28px rgba(93, 57, 29, 0.20);
}

.btn-secondary {
  color: var(--text);
  background: #fffaf2;
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--dark);
  background: #fff8ee;
  box-shadow: 0 16px 40px rgba(93, 57, 29, 0.18);
}

.hero-visual {
  position: relative;
}

.dashboard-window {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(230, 232, 235, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9ced6;
}

.dashboard-body {
  position: relative;
  padding: 24px;
}

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

.metrics article,
.chart-card,
.phone-mock {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.metrics article {
  padding: 18px;
}

.metrics span,
.chart-head span,
.phone-mock p {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metrics strong {
  display: block;
  margin: 14px 0 4px;
  font-size: 26px;
}

.metrics small {
  color: #147a49;
  font-weight: 800;
}

.chart-card {
  margin-top: 14px;
  padding: 20px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.chart-head strong {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
}

.chart-bars {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: end;
}

.chart-bars span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #4a2f1e, #c18a55);
}

.phone-mock {
  position: absolute;
  right: 26px;
  bottom: -42px;
  width: 184px;
  min-height: 300px;
  padding: 18px;
  color: #fff;
  background: #4a2f1e;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.phone-top {
  width: 54px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: #a4744a;
}

.phone-mock h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.phone-mock button {
  width: 100%;
  height: 42px;
  margin-top: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--dark);
  background: #fff;
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
}

.problem-section,
.partners-section {
  background: var(--bg-soft);
}

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

.solution-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 12, 16, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover,
.partner-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(93, 57, 29, 0.16);
}

.solution-card.featured {
  color: #fff;
  background: var(--dark);
}

.solution-card.featured p,
.solution-card.featured .card-number {
  color: #f1d9bd;
}

.card-number {
  display: block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.solution-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5a3a25;
  background: #fff1dd;
  font-size: 13px;
  font-weight: 700;
}

.service-section {
  overflow: hidden;
}

.service-carousel {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.arrow-btn {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.arrow-btn:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.service-icons {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 26px);
}

.service-icon {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: #fff;
  background: #191d23;
  box-shadow: 0 12px 34px rgba(93, 57, 29, 0.12);
  opacity: 0.38;
  transform: scale(0.82);
  transition: transform 260ms ease, opacity 260ms ease, background 260ms ease;
}

.service-icon span {
  font-size: 28px;
  font-weight: 800;
}

.service-icon.is-center {
  width: 148px;
  height: 148px;
  opacity: 1;
  background: linear-gradient(145deg, #4a2f1e, #b8793d);
  transform: scale(1);
}

.service-detail {
  width: min(720px, 100%);
  min-height: 190px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-detail.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.service-detail h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

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

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

.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 22px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding-bottom: 28px;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.company-list {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

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

.company-list dt {
  color: var(--muted);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  color: #4f3421;
  line-height: 1.8;
}

.map-card {
  height: 440px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.partner-card h3,
.partner-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.partner-card h3 {
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 18px;
}

.partner-card p {
  margin-bottom: 20px;
  font-size: 13px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}

.news-card div {
  padding: 20px;
}

.news-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.contact-section {
  color: #fff;
  background: radial-gradient(circle at 50% 0, rgba(47, 109, 246, 0.28), transparent 36%), var(--dark);
}

.contact-section .section-inner {
  max-width: 760px;
}

.contact-section h2 {
  font-size: clamp(42px, 6vw, 74px);
}

.contact-section p {
  color: #cdd3dc;
  margin-bottom: 34px;
}

.footer {
  padding: 30px 0;
  color: #ead9c1;
  background: #2b1b11;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer p {
  margin: 0;
  color: #ead9c1;
  font-size: 13px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: #ead9c1;
  font-size: 13px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.test-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(47, 109, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f8fa, #fffaf2 58%);
}

.test-shell {
  min-height: 100vh;
  width: min(920px, calc(100% - 32px));
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 72px 0;
}

.test-intro {
  text-align: center;
}

.test-intro h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 6vw, 62px);
}

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

.test-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(10, 12, 16, 0.14);
}

.test-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.test-card p {
  margin-bottom: 28px;
}

.test-card .btn {
  margin-top: auto;
}

.test-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  color: #fff;
  background: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.test-mark.accent {
  background: linear-gradient(145deg, var(--dark), var(--accent));
}

/* Cafe theme finishing layer */
.site-header {
  border-color: rgba(227, 206, 178, 0.9);
}

.dashboard-window,
.metrics article,
.chart-card,
.service-detail,
.solution-card,
.partner-card,
.news-card,
.test-card {
  background: rgba(255, 250, 242, 0.92);
}

.dashboard-window {
  border-color: rgba(227, 206, 178, 0.95);
}

.window-bar span {
  background: #c9aa84;
}

.metrics small {
  color: #8a5529;
}

.phone-mock {
  color: #fff8ee;
  background: linear-gradient(160deg, #4a2f1e, #7d4e2d);
  box-shadow: 0 26px 70px rgba(93, 57, 29, 0.34);
}

.phone-mock button,
.arrow-btn {
  background: #fff8ee;
}

.solution-card {
  box-shadow: 0 12px 40px rgba(93, 57, 29, 0.08);
}

.solution-card.featured {
  color: #fff8ee;
  background: linear-gradient(145deg, #4a2f1e, #7d4e2d);
}

.service-icon {
  color: #fff8ee;
  background: #6f472b;
}

.contact-section {
  color: #fff8ee;
  background:
    radial-gradient(circle at 50% 0, rgba(184, 121, 61, 0.32), transparent 36%),
    linear-gradient(180deg, #4a2f1e, #2b1b11);
}

.contact-section p {
  color: #f1d9bd;
}

.test-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(184, 121, 61, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf3e6, #fffaf2 58%, #f3e4cf);
}

.test-card:hover {
  box-shadow: 0 28px 90px rgba(93, 57, 29, 0.18);
}

@media (max-width: 980px) {
  .hero-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .dashboard-window {
    min-height: 460px;
  }

  .solution-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: auto;
    min-height: 62px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .nav a {
    padding: 8px 4px;
    font-size: 11px;
    text-align: center;
  }

  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: 150px;
  }

  .section-inner,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 44px;
  }

  p {
    font-size: 15px;
  }

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

  .dashboard-window {
    min-height: 420px;
    border-radius: 22px;
  }

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

  .chart-bars {
    height: 150px;
  }

  .phone-mock {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 14px;
  }

  .phone-mock button {
    margin-top: 22px;
  }

  .service-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .arrow-btn {
    width: 44px;
    height: 44px;
  }

  .service-icons {
    min-height: 124px;
    gap: 6px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .service-icon span {
    font-size: 18px;
  }

  .service-icon.is-center {
    width: 94px;
    height: 94px;
  }

  .service-detail {
    padding: 26px 18px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .test-card {
    min-height: 240px;
    padding: 24px;
  }
}

.photo-hero .eyebrow {
  color: #93c5fd;
}

.photo-hero .eyebrow::before {
  background: #60a5fa;
}

/* Requested HP refinements */
.photo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 92px;
  overflow: hidden;
  isolation: isolate;
}

.photo-hero::before {
  content: none;
}

.hero-bg,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 12, 7, 0.88) 0%, rgba(32, 19, 10, 0.74) 34%, rgba(32, 19, 10, 0.36) 64%, rgba(32, 19, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 12, 7, 0.20), rgba(20, 12, 7, 0.28));
}

.photo-hero .hero-grid {
  display: block;
}

.photo-hero .hero-copy {
  width: min(680px, 100%);
}

.photo-hero .eyebrow,
.photo-hero h1,
.photo-hero .hero-lead,
.photo-hero p {
  color: #fff8ee;
}

.photo-hero .eyebrow {
  color: #f4c56f;
}

.photo-hero p {
  color: rgba(255, 248, 238, 0.86);
}

.service-icons.slide-next {
  animation: serviceSlideNext 320ms ease both;
}

.service-icons.slide-prev {
  animation: serviceSlidePrev 320ms ease both;
}

.service-detail {
  width: 100%;
  min-height: auto;
  padding: 54px 0 0;
  border: 0;
  border-radius: 0;
  text-align: left;
  background: transparent;
  box-shadow: none;
}

.service-detail > .eyebrow,
.service-detail > h3 {
  text-align: center;
}

.service-detail > h3 {
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 56px);
}

#service-content {
  width: 100%;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-feature-grid section,
.review-flow-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 18px 56px rgba(93, 57, 29, 0.10);
}

.feature-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff8ee;
  background: linear-gradient(145deg, #8d5529, #d38a32);
  font-size: 20px;
  font-weight: 800;
}

.service-feature-grid h4,
.feature-title h4,
.review-flow-card h5 {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.35;
  font-weight: 800;
}

.service-feature-grid h4 {
  font-size: 26px;
}

.feature-title {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.feature-title h4 {
  font-size: clamp(34px, 5vw, 56px);
}

.feature-title h4::first-letter {
  color: var(--accent);
}

.review-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-flow-card h5 {
  font-size: 24px;
}

.phone-illustration {
  max-width: 230px;
  margin: 22px auto 0;
  padding: 24px 18px;
  border: 8px solid #2f2721;
  border-radius: 30px;
  text-align: center;
  background: #fffaf2;
}

.phone-speaker {
  width: 54px;
  height: 6px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #5b4434;
}

.stars {
  margin: 14px 0 18px;
  color: #f2bd45;
  font-size: 22px;
  letter-spacing: 0;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-row span {
  padding: 10px 6px;
  border-radius: 14px;
  color: #fff8ee;
  background: #8a5529;
  font-size: 13px;
  font-weight: 800;
}

.choice-row span:last-child {
  background: #9f3d33;
}

.split-flow {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.flow-arrow,
.review-bubble,
.benefit-list div {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 800;
}

.flow-arrow.good {
  color: #fff8ee;
  background: #2f8a50;
}

.flow-arrow.bad {
  color: #fff8ee;
  background: #a34835;
}

.review-bubble,
.benefit-list div {
  border: 1px solid var(--line);
  background: #fff8ee;
}

.review-bubble.muted {
  background: #f1e0ca;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.benefit-list span {
  color: var(--muted);
  font-size: 14px;
}

.review-result-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #e7c579;
  border-radius: 22px;
  background: rgba(255, 248, 238, 0.82);
}

.review-result-strip strong {
  color: #75502f;
  font-size: 20px;
}

.review-result-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-left: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

@keyframes serviceSlideNext {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes serviceSlidePrev {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .service-feature-grid,
  .review-flow-grid,
  .review-result-strip {
    grid-template-columns: 1fr;
  }

  .review-result-strip span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .photo-hero {
    min-height: 760px;
    padding-top: 154px;
    align-items: end;
  }

  .hero-gradient {
    background:
      linear-gradient(90deg, rgba(20, 12, 7, 0.90) 0%, rgba(32, 19, 10, 0.72) 58%, rgba(32, 19, 10, 0.18) 100%),
      linear-gradient(180deg, rgba(20, 12, 7, 0.04), rgba(20, 12, 7, 0.62));
  }

  .photo-hero h1 {
    font-size: 43px;
  }

  .service-detail {
    padding-top: 38px;
  }

  .service-feature-grid section,
  .review-flow-card {
    padding: 22px;
  }
}

/* Clean orange SaaS landing theme */
:root {
  --bg: #f8f8f8;
  --bg-soft: #ffffff;
  --text: #111827;
  --muted: #333333;
  --line: #e5e7eb;
  --dark: #111827;
  --dark-2: #1f2937;
  --accent: #f28c28;
  --accent-soft: #fff4e8;
  --gold: #d4a437;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 140, 40, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8f8f8 62%, #ffffff);
}

.accent-word {
  color: var(--accent);
}

.site-header {
  border-color: rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
}

.brand {
  color: var(--text);
}

.nav a {
  color: #374151;
}

.nav a:hover {
  color: var(--text);
  background: #fff4e8;
}

.eyebrow {
  color: var(--accent);
}

h1,
h2,
h3 {
  color: var(--text);
}

p,
.solution-card ul,
.company-list dd {
  color: var(--muted);
}

.photo-hero {
  min-height: 100vh;
  background: #111827;
}

.hero-bg {
  opacity: 1;
  filter: saturate(0.95) contrast(0.92);
}

.hero-gradient {
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.90) 0%, rgba(10, 14, 22, 0.78) 34%, rgba(12, 17, 27, 0.36) 64%, rgba(12, 17, 27, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 14, 22, 0.24), rgba(10, 14, 22, 0.34));
}

.photo-hero .hero-copy {
  width: min(680px, 100%);
  max-width: 680px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.photo-hero .eyebrow {
  color: #f4c56f;
}

.photo-hero h1,
.photo-hero .hero-lead,
.photo-hero p {
  color: #fff8ee;
}

.photo-hero p {
  color: rgba(255, 248, 238, 0.86);
}

.hero-lead {
  color: var(--text);
}

.btn-primary,
.btn-light {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(242, 140, 40, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover {
  box-shadow: 0 18px 40px rgba(242, 140, 40, 0.18);
}

.problem-section,
.partners-section {
  background: #ffffff;
}

.service-section,
.faq-section,
.news-section,
.company-section {
  background: #f8f8f8;
}

.solution-card,
.partner-card,
.news-card,
.service-feature-grid section,
.review-flow-card,
.review-bubble,
.benefit-list div,
.test-card {
  border-color: var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.solution-card:hover,
.partner-card:hover,
.news-card:hover,
.link-card:hover,
.test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.11);
}

.solution-card.featured {
  color: var(--text);
  background:
    radial-gradient(circle at 86% 14%, rgba(212, 164, 55, 0.16), transparent 34%),
    #ffffff;
}

.solution-card.featured p,
.solution-card.featured .card-number {
  color: #333333;
}

.card-number,
.feature-number {
  color: #ffffff;
  background: linear-gradient(145deg, var(--accent), var(--gold));
}

.tag-list span,
.chart-head strong,
.secondary-action,
.message-card,
.review-bubble.muted {
  color: var(--text);
  background: var(--accent-soft);
}

.service-icon {
  color: #ffffff;
  border-color: var(--line);
  background: #111827;
  opacity: 0.32;
}

.service-icon.is-center {
  background: linear-gradient(145deg, var(--accent), var(--gold));
  box-shadow: 0 20px 48px rgba(242, 140, 40, 0.22);
}

.arrow-btn {
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.arrow-btn:hover {
  background: var(--accent-soft);
}

.service-detail {
  background: transparent;
}

.feature-title h4,
.service-feature-grid h4,
.review-flow-card h5,
.benefit-list strong,
.review-result-strip strong {
  color: var(--text);
}

.phone-illustration {
  border-color: #111827;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.phone-speaker {
  background: #111827;
}

.stars {
  color: var(--gold);
}

.choice-row span,
.flow-arrow.good,
.flow-arrow.bad {
  color: #ffffff;
  background: var(--accent);
}

.choice-row span:last-child,
.flow-arrow.bad {
  background: #ef6f4d;
}

.review-result-strip {
  border-color: rgba(212, 164, 55, 0.42);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.review-result-strip strong {
  color: #1f2937;
}

.review-result-strip span {
  border-color: var(--line);
}

.faq-list {
  border-color: var(--line);
}

.faq-item {
  border-color: var(--line);
}

.faq-question {
  color: var(--text);
}

.faq-question span {
  color: var(--accent);
}

.map-card {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.contact-section {
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0, rgba(242, 140, 40, 0.16), transparent 42%),
    #ffffff;
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--text);
}

.contact-section p {
  color: #333333;
}

.footer {
  color: #4b5563;
  background: #f8f8f8;
  border-top: 1px solid var(--line);
}

.footer p,
.footer a {
  color: #4b5563;
}

.footer a:hover {
  color: var(--accent);
}

.test-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(242, 140, 40, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8f8f8);
}

.test-mark,
.test-mark.accent {
  background: linear-gradient(145deg, var(--accent), var(--gold));
}

@media (max-width: 720px) {
  .photo-hero {
    min-height: 760px;
    align-items: end;
  }

  .photo-hero .hero-copy {
    padding: 0;
    border-radius: 0;
  }

  .hero-gradient {
    background:
      linear-gradient(90deg, rgba(8, 11, 18, 0.90) 0%, rgba(10, 14, 22, 0.72) 58%, rgba(12, 17, 27, 0.18) 100%),
      linear-gradient(180deg, rgba(8, 11, 18, 0.06), rgba(8, 11, 18, 0.62));
  }
}

.brand { display: inline-flex; align-items: center; gap: 0; }
.brand span { font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif; }
.brand-logo { width: 156px; height: 58px; display: block; object-fit: contain; }

/* Corporate visual refresh */
:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f8;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3ee;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --accent: #2563eb;
  --accent-soft: #e8f0ff;
  --gold: #0ea5a4;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

body {
  color: var(--text);
  background:
    linear-gradient(rgba(219, 227, 238, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 227, 238, 0.34) 1px, transparent 1px),
    radial-gradient(circle at 85% 6%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 48%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.accent-word {
  color: var(--accent);
}

.site-header {
  height: 68px;
  border-color: rgba(219, 227, 238, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.10);
}

.brand span {
  color: #0f172a;
  letter-spacing: 0;
}

.nav a {
  color: #334155;
  border-radius: 10px;
}

.nav a:hover {
  color: #0f172a;
  background: #e8f0ff;
}

.eyebrow,
.photo-hero .eyebrow {
  color: #60a5fa;
}

h1,
h2,
h3,
.ps-block-head h3,
.problem-item h4,
.feature-solution-card h4,
.flow-step h4 {
  color: #0f172a;
}

p,
.ps-block-head p,
.problem-item p,
.feature-solution-card p,
.flow-step p {
  color: #475569;
}

.photo-hero {
  background: #0f172a;
}

.hero-bg {
  filter: saturate(0.72) contrast(0.92);
}

.hero-gradient {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.82) 36%, rgba(15, 23, 42, 0.42) 68%, rgba(15, 23, 42, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.20), rgba(15, 23, 42, 0.42));
}

.photo-hero h1,
.photo-hero .hero-lead,
.photo-hero p {
  color: #ffffff;
}

.photo-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.btn-primary,
.btn-light {
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  color: #0f172a;
  border-color: #dbe3ee;
  background: #ffffff;
}

.problem-section,
.partners-section,
.service-section,
.faq-section,
.news-section,
.company-section,
.contact-section {
  background: transparent;
}

.ps-block,
.ps-section .ps-block,
.solution-card,
.partner-card,
.news-card,
.test-card,
.service-feature-grid section,
.review-flow-card,
.service-detail,
.map-card {
  border-color: rgba(219, 227, 238, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.ps-block::before {
  background: rgba(37, 99, 235, 0.10);
}

.ps-label,
.tag-list span,
.feature-tags span,
.chart-head strong,
.secondary-action,
.message-card,
.review-bubble.muted {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.16);
  background: #e8f0ff;
}

.card-number,
.feature-number,
.problem-item span,
.flow-step span,
.test-mark,
.test-mark.accent {
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}

.problem-item,
.feature-solution-card,
.flow-step,
.review-bubble,
.benefit-list div {
  border-color: rgba(219, 227, 238, 0.92);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.ps-section .problem-item:hover,
.ps-section .feature-solution-card:hover,
.ps-section .flow-step:hover,
.partner-card:hover,
.news-card:hover,
.test-card:hover {
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.13);
}

.feature-media,
.service-icon.is-center,
.link-icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(145deg, #0f172a, #2563eb);
  color: #ffffff;
}

.service-icon {
  border-color: #dbe3ee;
  color: #ffffff;
  background: #1e293b;
  border-radius: 18px;
}

.arrow-btn {
  border-color: #dbe3ee;
  color: #0f172a;
  background: #ffffff;
}

.arrow-btn:hover {
  background: #e8f0ff;
}

.review-result-strip {
  border-color: #dbe3ee;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-list,
.faq-item,
.company-list,
.company-list div {
  border-color: #dbe3ee;
}

.faq-question span {
  color: #2563eb;
}

.contact-section {
  color: #0f172a;
}

.contact-section h2,
.contact-section .eyebrow {
  color: #0f172a;
}

.contact-section p {
  color: #475569;
}

.footer {
  border-top: 1px solid #dbe3ee;
  background: #ffffff;
}

.footer p,
.footer a {
  color: #64748b;
}

.footer a:hover {
  color: #2563eb;
}

.test-page {
  background:
    linear-gradient(rgba(219, 227, 238, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 227, 238, 0.34) 1px, transparent 1px),
    radial-gradient(circle at 76% 12%, rgba(37, 99, 235, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff, #f5f7fb);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 14px;
  }

  .hero-gradient {
    background:
      linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 60%, rgba(15, 23, 42, 0.16) 100%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.68));
  }
}

/* Problem / Solution vertical section */
.problem-section {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f8efe3 48%, #fffaf2 100%);
}

.problem-section .section-heading {
  max-width: 780px;
}

.problem-solution-stack {
  display: grid;
  gap: 34px;
}

.ps-block {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(227, 206, 178, 0.9);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 24px 70px rgba(93, 57, 29, 0.12);
}

.ps-block::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(184, 121, 61, 0.12);
  content: "";
}

.solution-block {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(255, 241, 221, 0.92));
}

.flow-block {
  background: #ffffff;
}

.ps-block-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 28px;
}

.ps-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(184, 121, 61, 0.26);
  border-radius: 999px;
  color: #8a5529;
  background: #fff1dd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ps-block-head h3 {
  margin: 0 0 14px;
  color: #372315;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 800;
}

.ps-block-head p {
  margin-bottom: 0;
  color: #6f5846;
}

.problem-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-item,
.feature-solution-card,
.flow-step {
  border: 1px solid rgba(227, 206, 178, 0.92);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(93, 57, 29, 0.08);
}

.problem-item {
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
}

.problem-item.wide {
  grid-column: 1 / -1;
}

.problem-item span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff8ee;
  background: linear-gradient(145deg, #8d5529, #d38a32);
  font-size: 12px;
  font-weight: 800;
}

.problem-item h4,
.feature-solution-card h4,
.flow-step h4 {
  margin: 0 0 10px;
  color: #372315;
  line-height: 1.35;
  font-size: 21px;
  font-weight: 800;
}

.problem-item p,
.feature-solution-card p,
.flow-step p {
  margin: 0;
  color: #6f5846;
  font-size: 15px;
  line-height: 1.8;
}

.feature-solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.feature-solution-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 240px;
  padding: 24px;
  border-radius: 26px;
}

.feature-media {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff8ee;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, #4a2f1e, #b8793d);
  font-size: 38px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(184, 121, 61, 0.22);
  border-radius: 999px;
  color: #5a3a25;
  background: #fff1dd;
  font-size: 13px;
  font-weight: 800;
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -18px;
  z-index: 2;
  width: 22px;
  height: 2px;
  background: #d4a437;
  content: "";
}

.flow-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #f28c28, #d4a437);
  font-weight: 800;
}

@media (max-width: 980px) {
  .problem-list,
  .feature-solution-card,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .feature-media {
    width: min(170px, 100%);
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -15px;
    left: 46px;
    width: 2px;
    height: 16px;
  }
}

@media (max-width: 720px) {
  .ps-block {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .problem-solution-stack {
    gap: 22px;
  }

  .problem-item,
  .feature-solution-card,
  .flow-step {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .feature-media {
    width: 112px;
    border-radius: 20px;
    font-size: 28px;
  }
}

/* Problem / Solution separated heading layout */
.ps-section {
  display: grid;
  gap: 22px;
}

.ps-section + .ps-section {
  margin-top: 54px;
}

.ps-section .ps-block-head {
  max-width: 920px;
  margin-bottom: 0;
  padding-left: clamp(0px, 2vw, 18px);
}

.ps-section .ps-block-head h3 {
  font-size: clamp(34px, 5vw, 56px);
}

.ps-section .ps-block-head p {
  max-width: 760px;
  font-size: 17px;
}

.ps-section .ps-block {
  padding: clamp(22px, 4vw, 42px);
  border-color: rgba(227, 206, 178, 0.72);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 247, 236, 0.94));
  box-shadow:
    0 26px 80px rgba(93, 57, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.ps-section .ps-block::before {
  opacity: 0.72;
}

.ps-section .problem-list,
.ps-section .feature-solution-grid,
.ps-section .flow-steps {
  z-index: 1;
}

.ps-section .problem-item,
.ps-section .feature-solution-card,
.ps-section .flow-step {
  border-color: rgba(227, 206, 178, 0.66);
  box-shadow: 0 18px 54px rgba(93, 57, 29, 0.10);
}

.ps-section .problem-item:hover,
.ps-section .feature-solution-card:hover,
.ps-section .flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(93, 57, 29, 0.14);
}

.ps-section .problem-item,
.ps-section .feature-solution-card,
.ps-section .flow-step {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (max-width: 720px) {
  .ps-section {
    gap: 16px;
  }

  .ps-section + .ps-section {
    margin-top: 34px;
  }

  .ps-section .ps-block-head {
    padding-left: 0;
  }

  .ps-section .ps-block-head h3 {
    font-size: 32px;
  }

  .ps-section .ps-block-head p {
    font-size: 15px;
  }

  .ps-section .ps-block {
    padding: 18px;
    border-radius: 26px;
  }
}

/* Corporate final layer */
.ps-section .ps-block {
  border-color: rgba(219, 227, 238, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.ps-section .ps-block-head h3,
.problem-item h4,
.feature-solution-card h4,
.flow-step h4 {
  color: #0f172a;
}

.ps-section .ps-block-head p,
.problem-item p,
.feature-solution-card p,
.flow-step p {
  color: #475569;
}

.problem-item,
.feature-solution-card,
.flow-step {
  border-color: rgba(219, 227, 238, 0.92);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.problem-item span,
.feature-media,
.flow-step span {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #0f172a, #2563eb);
}

.feature-tags span {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.16);
  background: #e8f0ff;
}

.flow-step:not(:last-child)::after {
  background: #2563eb;
}

/* Smart dense LP layout */
.section-pad {
  padding: 88px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading.center {
  max-width: 840px;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 12px;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: #2563eb;
  content: "";
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.photo-hero {
  min-height: 92vh;
  padding: 130px 0 76px;
}

.photo-hero .hero-copy {
  width: min(760px, 100%);
  max-width: 760px;
}

.photo-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 92px);
  letter-spacing: 0;
}

.photo-hero .hero-lead {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: 20px;
}

.photo-hero p {
  max-width: 700px;
}

.problem-solution-stack {
  gap: 46px;
}

.ps-section {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.ps-section + .ps-section {
  margin-top: 58px;
}

.ps-section .ps-block-head {
  position: sticky;
  top: 104px;
  padding-left: 0;
}

.ps-section .ps-block-head h3 {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.03;
}

.ps-section .ps-block-head p {
  font-size: 15px;
  line-height: 1.85;
}

.ps-section .ps-block {
  padding: 24px;
  border-radius: 18px;
}

.problem-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.problem-item,
.feature-solution-card,
.flow-step {
  border-radius: 12px;
}

.problem-item {
  min-height: 172px;
  padding: 20px;
}

.problem-item h4,
.feature-solution-card h4,
.flow-step h4 {
  font-size: 19px;
}

.feature-solution-grid {
  gap: 12px;
}

.feature-solution-card {
  grid-template-columns: 132px 1fr;
  min-height: 188px;
  padding: 18px;
}

.feature-media {
  border-radius: 12px;
  font-size: 32px;
}

.feature-tags {
  gap: 8px;
  margin-top: 12px;
}

.feature-tags span {
  border-radius: 8px;
}

.flow-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.flow-step {
  min-height: 194px;
  padding: 18px;
}

.flow-step span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.service-carousel {
  margin-bottom: 18px;
}

.service-icons {
  min-height: 132px;
}

.service-icon {
  width: 86px;
  height: 86px;
}

.service-icon.is-center {
  width: 128px;
  height: 128px;
}

.service-detail {
  padding-top: 34px;
}

.service-feature-grid,
.review-flow-grid {
  gap: 12px;
}

.service-feature-grid section,
.review-flow-card {
  min-height: 220px;
  border-radius: 14px;
}

.faq-section .narrow {
  width: min(1120px, calc(100% - 40px));
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 0;
}

.faq-item {
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.faq-question {
  min-height: 64px;
  padding: 0 18px;
  font-size: 15px;
}

.faq-answer p {
  padding: 0 18px 18px;
  font-size: 14px;
}

.company-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.partners-grid,
.news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-card,
.news-card {
  border-radius: 12px;
}

.partner-card h3,
.news-card h3 {
  font-size: 16px;
}

.contact-section .section-inner {
  max-width: 920px;
  padding: 56px 40px;
  border: 1px solid #dbe3ee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .ps-section {
    grid-template-columns: 1fr;
  }

  .ps-section .ps-block-head {
    position: static;
  }

  .flow-steps,
  .partners-grid,
  .news-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .feature-solution-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 68px 0;
  }

  .section-inner,
  .faq-section .narrow {
    width: min(100% - 28px, 1180px);
  }

  .photo-hero {
    min-height: 720px;
    padding-top: 150px;
  }

  .photo-hero h1 {
    font-size: 46px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-item.wide {
    grid-column: auto;
  }

  .ps-section .ps-block {
    padding: 14px;
  }

  .contact-section .section-inner {
    padding: 34px 20px;
  }
}

/* Restore FAQ and Contact to the previous simpler layout */
.faq-section .narrow {
  width: min(860px, calc(100% - 40px));
}

.faq-list {
  display: block;
  border-top: 1px solid #dbe3ee;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid #dbe3ee;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-question {
  min-height: 76px;
  padding: 0;
  font-size: 18px;
}

.faq-answer p {
  padding: 0 0 28px;
  font-size: 16px;
}

.contact-section .section-inner {
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 720px) {
  .faq-section .narrow {
    width: min(100% - 28px, 860px);
  }

  .contact-section .section-inner {
    padding: 0;
  }
}

/* Squared corporate consistency */
.site-header,
.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.test-card,
.ps-block,
.ps-section .ps-block,
.problem-item,
.feature-solution-card,
.flow-step,
.feature-media,
.service-icon,
.service-icon.is-center,
.service-feature-grid section,
.review-flow-card,
.partner-card,
.news-card,
.map-card,
.contact-section .section-inner {
  border-radius: 4px;
}

.arrow-btn,
.card-number,
.feature-number,
.problem-item span,
.flow-step span,
.test-mark,
.test-mark.accent,
.link-icon {
  border-radius: 2px;
}

.tag-list span,
.feature-tags span,
.chart-head strong,
.secondary-action,
.message-card,
.review-bubble,
.review-bubble.muted,
.benefit-list div {
  border-radius: 3px;
}

.service-icon {
  width: 92px;
  height: 92px;
}

.service-icon.is-center {
  width: 132px;
  height: 132px;
}

.eyebrow,
.photo-hero .eyebrow,
.ps-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: auto;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #0b3f91;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.ps-label::before {
  width: 8px;
  height: 40px;
  flex: 0 0 auto;
  background: #0b3f91;
  content: "";
}

.ps-label::before {
  display: block;
}

.problem-item span,
.flow-step span {
  width: auto;
  height: auto;
  min-height: 34px;
  padding: 0 12px;
}

.flow-step span {
  display: inline-flex;
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 4px;
  }

  .eyebrow::before,
  .ps-label::before {
    width: 6px;
    height: 32px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon.is-center {
    width: 96px;
    height: 96px;
  }
}

/* Compact spacing pass */
.section-pad {
  padding: 46px 0;
}

.site-header {
  top: 10px;
}

.photo-hero {
  min-height: 70vh;
  padding: 96px 0 36px;
}

.photo-hero h1 {
  margin-bottom: 12px;
}

.photo-hero .hero-lead {
  margin-bottom: 6px;
}

.photo-hero p {
  margin-bottom: 8px;
  line-height: 1.68;
}

.section-heading {
  margin-bottom: 16px;
}

.eyebrow,
.photo-hero .eyebrow,
.ps-label {
  margin-bottom: 8px;
}

.problem-solution-stack {
  gap: 22px;
}

.ps-section {
  gap: 12px;
}

.ps-section + .ps-section {
  margin-top: 26px;
}

.ps-section .ps-block {
  padding: 12px;
}

.problem-list,
.feature-solution-grid,
.flow-steps,
.service-feature-grid,
.review-flow-grid,
.partners-grid,
.news-grid {
  gap: 6px;
}

.problem-item,
.feature-solution-card,
.flow-step,
.service-feature-grid section,
.review-flow-card,
.partner-card,
.news-card {
  padding: 12px;
}

.problem-item {
  min-height: 120px;
}

.feature-solution-card {
  min-height: 132px;
  grid-template-columns: 96px 1fr;
  gap: 12px;
}

.feature-media {
  font-size: 24px;
}

.feature-tags {
  margin-top: 6px;
  gap: 5px;
}

.feature-tags span {
  padding: 5px 8px;
  font-size: 12px;
}

.flow-step {
  min-height: 136px;
}

.flow-step span {
  margin-bottom: 8px;
}

.service-carousel {
  margin-bottom: 2px;
}

.service-icons {
  min-height: 92px;
}

.service-detail {
  padding-top: 14px;
}

.faq-question {
  min-height: 52px;
}

.faq-answer p {
  padding-bottom: 14px;
}

.faq-groups {
  display: grid;
  gap: 54px;
}

.faq-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 5px solid #1857b6;
}

.faq-category-head > span {
  color: #1857b6;
  font-size: 13px;
  font-weight: 800;
}

.faq-category-head h3 {
  margin: 0;
  color: #111827;
  font-size: 23px;
  line-height: 1.4;
}

.faq-category .faq-list {
  border-color: #cfd8e5;
}

.faq-category .faq-question {
  color: #111827;
}

.faq-category .faq-answer p {
  margin: 0;
  color: #526074;
  line-height: 1.9;
}

@media (max-width: 720px) {
  .faq-groups {
    gap: 42px;
  }

  .faq-category-head {
    gap: 12px;
    padding-left: 12px;
  }

  .faq-category-head h3 {
    font-size: 20px;
  }

  .faq-category .faq-question {
    min-height: 64px;
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-category .faq-answer p {
    font-size: 14px;
  }
}

.company-list {
  margin-top: 12px;
}

.company-list div {
  padding: 10px 0;
}

.map-card {
  height: 320px;
}

.partner-card h3 {
  margin-top: 10px;
}

.partner-card p {
  margin-bottom: 10px;
}

.news-card div {
  padding: 12px;
}

.contact-section p {
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .section-pad {
    padding: 36px 0;
  }

  .photo-hero {
    min-height: 560px;
    padding-top: 118px;
  }

  .photo-hero h1 {
    font-size: 38px;
  }

  .ps-section + .ps-section {
    margin-top: 20px;
  }

  .ps-section .ps-block,
  .problem-item,
  .feature-solution-card,
  .flow-step {
    padding: 10px;
  }

  .feature-solution-card {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 260px;
  }
}

/* App logo display */
.feature-media,
.problem-item span,
.flow-step span {
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.feature-solution-card .feature-media {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-icon {
  padding: 10px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-icon.is-center {
  padding: 14px;
}

/* Flow arrows and frameless service logos */
.flow-step:not(:last-child)::after {
  top: 36px;
  right: -22px;
  width: 34px;
  height: 18px;
  background: none;
  color: #2563eb;
  font-size: 30px;
  line-height: 18px;
  font-weight: 800;
  content: "→";
}

.service-icon,
.service-icon.is-center {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-icon {
  padding: 4px;
}

.service-icon.is-center {
  padding: 2px;
}

/* Larger header wordmark */
.site-header {
  padding-left: 10px;
}

.brand {
  min-width: 0;
}

.brand-logo {
  width: 190px;
  height: 60px;
  object-fit: contain;
  object-position: center;
  transform: translateY(2px);
}

.nav a,
.nav-menu-button {
  border-radius: 4px;
  color: #334155;
}

.nav a:hover,
.nav-menu-button:hover,
.nav-menu.is-open .nav-menu-button {
  color: #0f172a;
  background: #e8f0ff;
}

.service-menu {
  border-radius: 4px;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 170px;
    height: 54px;
  }

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

  .nav a,
  .nav-menu-button {
    width: 100%;
    padding: 8px 4px;
    font-size: 11px;
    text-align: center;
  }

  .service-menu {
    right: auto;
    left: 0;
    width: min(320px, calc(100vw - 32px));
  }
}

/* About OrdeOnix section */
.about-ordeonix-section {
  background: #f7f7f7;
}

.about-ordeonix-card {
  padding: clamp(52px, 7vw, 96px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-ordeonix-card .section-heading {
  margin-right: auto;
  margin-bottom: clamp(34px, 5vw, 64px);
  margin-left: auto;
  text-align: center;
}

.about-ordeonix-card .eyebrow {
  justify-content: center;
}

.about-ordeonix-card .section-heading h2 {
  margin-bottom: 18px;
  color: #222222;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.18;
}

.about-ordeonix-card .section-heading > p:not(.eyebrow) {
  max-width: 880px;
  margin: 0 auto;
  color: #333333;
  font-size: clamp(16px, 1.8vw, 23px);
  font-weight: 800;
  line-height: 1.8;
}

.about-ordeonix-body {
  display: block;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1200px;
  margin: 0 auto;
}

.about-points article {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #ececec;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.about-visual {
  position: relative;
  min-height: clamp(220px, 26vw, 310px);
  background: #f1f2f4;
}

.about-visual::before,
.about-visual::after,
.about-visual span::before,
.about-visual span::after {
  position: absolute;
  content: "";
}

.about-visual-qr {
  background:
    radial-gradient(circle at 26% 22%, rgba(47, 98, 229, 0.18), transparent 28%),
    linear-gradient(135deg, #fbfbfb 0%, #eceff4 100%);
}

.about-visual-qr::before {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  border: 10px solid #111827;
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.about-visual-qr::after {
  width: 58px;
  height: 58px;
  top: calc(50% - 29px);
  left: calc(50% - 29px);
  border: 8px solid var(--accent);
  box-shadow:
    -54px -54px 0 -8px #ffffff,
    -54px -54px 0 0 #111827,
    54px -54px 0 -8px #ffffff,
    54px -54px 0 0 #111827,
    -54px 54px 0 -8px #ffffff,
    -54px 54px 0 0 #111827;
}

.about-visual-qr span::before {
  width: 190px;
  height: 92px;
  right: 12%;
  bottom: 18%;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  transform: rotate(-10deg);
}

.about-visual-review {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 42%),
    #f7f7f7;
}

.about-visual-review::before {
  width: 210px;
  height: 118px;
  top: 50%;
  left: 50%;
  border: 4px solid #111827;
  border-radius: 12px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.about-visual-review::after {
  width: 150px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 75px);
  background:
    linear-gradient(90deg, #f5b400 0 18%, transparent 18% 21%, #f5b400 21% 39%, transparent 39% 42%, #f5b400 42% 60%, transparent 60% 63%, #f5b400 63% 81%, transparent 81% 84%, #d1d5db 84% 100%);
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
}

.about-visual-review span::before {
  width: 92px;
  height: 92px;
  right: 16%;
  bottom: 14%;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.16);
}

.about-points h3 {
  margin: 0;
  padding: 28px 20px 34px;
  color: #222222;
  text-align: center;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.45;
}

.service-carousel .arrow-btn[hidden] {
  display: none;
}

.service-carousel:has(.arrow-btn[hidden]) {
  grid-template-columns: 1fr;
}

.service-icons:has(.service-icon:only-child) {
  min-height: 190px;
}

.service-icons .service-icon:only-child {
  width: 160px;
  height: 160px;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 760px) {
  .about-points {
    grid-template-columns: 1fr;
  }

  .about-ordeonix-card {
    padding-top: 42px;
  }

  .about-points article {
    min-height: 300px;
  }

  .about-visual {
    min-height: 220px;
  }
}

/* Hero photo height tuning */
.photo-hero {
  min-height: max(92vh, 850px);
  padding-bottom: 82px;
}

.hero-bg {
  object-position: center 64%;
}

.photo-hero h1 {
  line-height: 1.08;
}

.photo-hero .eyebrow {
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .photo-hero {
    min-height: 680px;
    padding-bottom: 58px;
  }

  .hero-bg {
    object-position: center 58%;
  }

  .photo-hero h1 {
    line-height: 1.08;
  }
}

/* 2026-06: Homepage narrative and SmartReview service detail */
.hero-support {
  max-width: 620px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid #2f62e5;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(14px, 1.35vw, 18px) !important;
  font-weight: 600;
  line-height: 1.9 !important;
}

.about-ordeonix-section {
  background: #f7f9fc;
}

.about-ordeonix-card {
  padding-bottom: clamp(38px, 6vw, 72px);
}

.about-ordeonix-card .section-heading {
  max-width: 940px;
}

.about-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1240px;
  border-top: 1px solid #ccd7e6;
  border-bottom: 1px solid #ccd7e6;
}

.about-points article {
  min-height: 0;
  padding: clamp(30px, 4vw, 54px);
  border: 0;
  border-right: 1px solid #ccd7e6;
  background: transparent;
  box-shadow: none;
}

.about-points article:last-child {
  border-right: 0;
}

.about-point-number {
  display: block;
  margin-bottom: 34px;
  color: #2f62e5;
  font-size: 14px;
  font-weight: 900;
}

.about-points h3 {
  margin: 0 0 18px;
  padding: 0;
  color: #0b152b;
  text-align: left;
  font-size: clamp(21px, 2vw, 28px);
}

.about-points article p {
  margin: 0;
  color: #526078;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.service-detail {
  padding: clamp(34px, 5vw, 72px) 0 0;
}

.service-detail > .eyebrow,
.service-detail > h3 {
  padding-right: clamp(24px, 6vw, 90px);
  padding-left: clamp(24px, 6vw, 90px);
}

.smartreview-feature {
  margin-top: 42px;
  color: #0b152b;
}

.smartreview-lead,
.smartreview-story,
.smartreview-outcome {
  padding: clamp(44px, 6vw, 84px) clamp(24px, 7vw, 104px);
  border-top: 1px solid #d7e0ed;
}

.smartreview-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 7vw, 110px);
  align-items: end;
}

.smartreview-lead h4 {
  margin: 14px 0 0;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
}

.smartreview-lead h4 span {
  color: #2f62e5;
}

.smartreview-lead > p {
  margin: 0;
  color: #48566e;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 2;
}

.smartreview-story.is-soft {
  background: #f2f6fc;
}

.smartreview-story-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.smartreview-story-head > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: #10275f;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.smartreview-story-head .eyebrow {
  margin-bottom: 10px;
}

.smartreview-story h5,
.smartreview-outcome h5 {
  margin: 0;
  color: #0b152b;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.35;
}

.smartreview-steps,
.smartreview-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smartreview-steps article,
.smartreview-benefits article {
  position: relative;
  min-height: 210px;
  padding: 34px;
  border: 1px solid #cad6e7;
  border-right: 0;
  background: #ffffff;
}

.smartreview-steps article:last-child,
.smartreview-benefits article:last-child {
  border-right: 1px solid #cad6e7;
}

.smartreview-steps article:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -18px;
  width: 34px;
  height: 34px;
  background: #2f62e5;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  content: "";
  transform: translateY(-50%);
}

.smartreview-steps strong,
.smartreview-benefits strong {
  display: block;
  margin-bottom: 18px;
  color: #122044;
  font-size: clamp(18px, 1.8vw, 23px);
}

.smartreview-steps p,
.smartreview-benefits p {
  margin: 0;
  color: #56647b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.smartreview-benefits article {
  border-top: 4px solid #2f62e5;
}

.customer-voice-panel {
  border-top: 4px solid #2f62e5;
  background: #ffffff;
}

.customer-voice-copy {
  padding: clamp(34px, 5vw, 64px);
}

.customer-voice-lead {
  max-width: 900px;
  margin: 0;
  color: #172849;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.8;
}

.customer-voice-flow {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr;
  align-items: stretch;
  padding: 0 clamp(34px, 5vw, 64px) clamp(34px, 5vw, 64px);
}

.voice-flow-step {
  min-height: 150px;
  padding: 26px;
  border: 1px solid #cbd7e8;
  background: #f7f9fc;
}

.voice-flow-step.is-primary {
  border-color: #2f62e5;
  background: #10275f;
}

.voice-flow-step span {
  display: block;
  margin-bottom: 28px;
  color: #2f62e5;
  font-size: 13px;
  font-weight: 900;
}

.voice-flow-step strong {
  color: #172849;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.55;
}

.voice-flow-step.is-primary span {
  color: #ffca3a;
}

.voice-flow-step.is-primary strong {
  color: #ffffff;
}

.customer-voice-flow > i {
  display: grid;
  place-items: center;
  color: #2f62e5;
  font-size: 24px;
  font-style: normal;
}

.customer-voice-note {
  margin: 0;
  padding: 24px clamp(34px, 5vw, 64px);
  border-top: 1px solid #dbe3ef;
  background: #edf3fd;
  color: #25416f;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.smartreview-customize {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}

.smartreview-customize ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.smartreview-customize li {
  padding: 23px 0;
  border-bottom: 1px solid #d7e0ed;
  color: #26344c;
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 800;
}

.smartreview-customize li::before {
  margin-right: 14px;
  color: #2f62e5;
  content: "✓";
}

.smartreview-device {
  width: 260px;
  min-height: 440px;
  margin: 0 auto;
  padding: 20px;
  border: 8px solid #0b152b;
  background: #ffffff;
  box-shadow: 18px 22px 0 #dbe5f4;
}

.smartreview-device > span,
.smartreview-device > strong {
  display: block;
}

.smartreview-device .device-bar {
  width: 70px;
  height: 6px;
  margin: 0 auto 34px;
  background: #0b152b;
}

.smartreview-device strong {
  margin-bottom: 18px;
  font-size: 20px;
}

.smartreview-device .device-photo {
  height: 150px;
  margin-bottom: 24px;
  background-image: url("/assets/images/hero-restaurant-cafe-mobile.webp");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.smartreview-device .device-line {
  height: 8px;
  margin: 12px 0;
  background: #dbe3ef;
}

.smartreview-device .device-line.short {
  width: 68%;
}

.smartreview-device .device-button {
  margin-top: 34px;
  padding: 14px;
  background: #2f62e5;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.smartreview-outcome {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px 70px;
  background: #0d1d45;
  color: #ffffff;
}

.smartreview-outcome .eyebrow {
  color: #79a0ff;
}

.smartreview-outcome h5 {
  color: #ffffff;
}

.outcome-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.outcome-flow span {
  display: grid;
  min-width: 92px;
  min-height: 92px;
  padding: 12px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.outcome-flow i {
  color: #ffca3a;
  font-size: 24px;
  font-style: normal;
}

.smartreview-outcome > p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .smartreview-lead,
  .smartreview-outcome {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-points article {
    border-right: 0;
    border-bottom: 1px solid #ccd7e6;
  }

  .about-points article:last-child {
    border-bottom: 0;
  }

  .smartreview-outcome > p {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .hero-support {
    margin-top: 22px;
    padding-left: 14px;
    line-height: 1.75 !important;
  }

  .smartreview-customize {
    grid-template-columns: 1fr;
  }

  .about-points article {
    padding: 32px 20px;
  }

  .smartreview-feature {
    margin-top: 30px;
  }

  .smartreview-lead,
  .smartreview-story,
  .smartreview-outcome {
    padding: 42px 20px;
  }

  .smartreview-story-head {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .smartreview-story-head > span {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .smartreview-steps,
  .smartreview-benefits {
    grid-template-columns: 1fr;
  }

  .smartreview-steps article,
  .smartreview-benefits article {
    min-height: 0;
    border-right: 1px solid #cad6e7;
    border-bottom: 0;
  }

  .smartreview-steps article:last-child,
  .smartreview-benefits article:last-child {
    border-bottom: 1px solid #cad6e7;
  }

  .smartreview-steps article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }

  .smartreview-device {
    width: min(250px, calc(100% - 20px));
  }

  .customer-voice-copy {
    padding: 30px 20px;
  }

  .customer-voice-flow {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px 30px;
  }

  .customer-voice-flow > i {
    min-height: 36px;
    transform: rotate(90deg);
  }

  .voice-flow-step {
    min-height: 0;
  }

  .customer-voice-note {
    padding: 22px 20px;
    text-align: left;
  }

  .outcome-flow {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
  }

  .outcome-flow span {
    min-width: 0;
    min-height: 76px;
  }

  .outcome-flow i:nth-of-type(2) {
    display: none;
  }
}

/* Legal pages */
.legal-page {
  background: #f7f8fa;
  color: #111827;
}

.legal-main {
  min-height: 100vh;
  padding-top: 100px;
}

.legal-hero {
  padding: 84px 0 64px;
  border-bottom: 1px solid #dce2ea;
  background: #ffffff;
}

.legal-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.12;
}

.legal-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 0 18px;
  color: #566174;
  line-height: 1.9;
}

.legal-hero time {
  color: #7b8492;
  font-size: 14px;
  font-weight: 600;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 104px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding-left: 18px;
  border-left: 3px solid #1857b6;
}

.legal-toc > p {
  margin: 0 0 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
}

.legal-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
  transition: color 160ms ease;
}

.legal-toc a:hover {
  color: #1857b6;
}

.legal-document {
  min-width: 0;
  padding: 56px 64px;
  border: 1px solid #dce2ea;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.legal-intro {
  margin: 0 0 52px;
  padding: 24px;
  border-left: 4px solid #1857b6;
  background: #f3f7fd;
  color: #344054;
  line-height: 2;
}

.legal-document section {
  scroll-margin-top: 112px;
}

.legal-document section + section {
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid #e4e8ee;
}

.legal-document h2 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.45;
}

.legal-document p,
.legal-document li {
  color: #475467;
  font-size: 15px;
  line-height: 2;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.5em;
}

.legal-document strong {
  color: #27364a;
}

.legal-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid #dce2ea;
}

.legal-table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: #475467;
  font-size: 14px;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid #e4e8ee;
  text-align: left;
  line-height: 1.7;
}

.legal-table-wrap th {
  color: #27364a;
  background: #f5f7fa;
}

.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-document .legal-contact {
  margin-top: 64px;
  padding: 36px;
  border: 0;
  background: #111c31;
}

.legal-contact h2,
.legal-contact p {
  color: #ffffff;
}

.legal-contact .eyebrow {
  color: #6da1f3;
}

.legal-contact a {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: static;
    columns: 2;
    padding: 20px 24px;
    border: 1px solid #dce2ea;
    border-left: 3px solid #1857b6;
    background: #ffffff;
  }

  .legal-toc > p {
    column-span: all;
  }

  .legal-document {
    padding: 42px 34px;
  }
}

@media (max-width: 680px) {
  .legal-nav a:nth-last-child(n + 2) {
    display: none;
  }

  .legal-main {
    padding-top: 82px;
  }

  .legal-hero {
    padding: 54px 0 42px;
  }

  .legal-layout {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .legal-toc {
    columns: 1;
  }

  .legal-document {
    padding: 30px 20px;
  }

  .legal-intro {
    margin-bottom: 40px;
    padding: 18px;
  }

  .legal-document section + section {
    margin-top: 40px;
    padding-top: 40px;
  }

  .legal-document .legal-contact {
    margin-top: 48px;
    padding: 28px 20px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
    min-height: 116px;
    align-items: stretch;
    padding: 8px 10px 10px;
  }

  .brand {
    height: 56px;
  }

  .nav {
    width: 100%;
  }

  .nav > *,
  .nav-menu {
    min-width: 0;
  }

  .nav a,
  .nav-menu-button {
    white-space: nowrap;
  }

  .about-ordeonix-card .section-heading h2 {
    font-size: clamp(32px, 10vw, 46px);
    overflow-wrap: anywhere;
  }
}

/* Hero text sits on a dark overlay, so use a high-contrast accent. */
.photo-hero .eyebrow {
  color: #93c5fd;
}

.photo-hero .eyebrow::before {
  background: #60a5fa;
}
