:root {
  --bg: #f7f8fb;
  --panel: #ffffff;
  --text: #111a2f;
  --muted: #576178;
  --primary: #2862d9;
  --primary-dark: #1837b8;
  --line: #dbe2f2;
  --soft: #ecf2ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.slider-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(248 250 253 / 86%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #dfe6f2;
}

.header-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.header-logo {
  color: #1a2847;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a5875;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.header-nav a:hover {
  color: #2f6ec8;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #2f7ccf;
  background: #2f7ccf;
  color: #fff;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover {
  background: #266bb4;
  border-color: #266bb4;
}

.header-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid #d3ddec;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
}

.header-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2f466f;
}

.header-menu-btn span + span {
  margin-top: 6px;
}

.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-small {
  padding: 9px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 74px 0 68px;
  background: #f7f8fb;
}

.hero::before {
  content: "";
  position: absolute;
  top: -78px;
  left: -86px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgb(84 197 255 / 33%) 0%, rgb(84 197 255 / 0%) 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgb(76 88 119 / 7%) 1px, transparent 1.6px);
  background-size: 64px 64px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  color: #4172bd;
  font-weight: 700;
  background: #e8f2ff;
  border-radius: 999px;
  padding: 7px 14px;
}

.hero-kicker {
  margin: 0;
  color: #4f586d;
  font-size: clamp(1.35rem, 2.1vw, 2.25rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.hero h1 {
  margin: 8px 0 0;
  line-height: 1.18;
}

.hero h1 span {
  display: block;
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
  letter-spacing: 0.01em;
  color: #071634;
  font-weight: 800;
}

.hero h1 strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(2.15rem, 4.3vw, 4.1rem);
  letter-spacing: 0.01em;
  color: #2f69e3;
  font-weight: 800;
}

.hero-line {
  display: block;
  margin: 26px 0 24px;
  width: 78px;
  height: 8px;
  border-radius: 99px;
  background: #3570e8;
}

.lead {
  color: #2f374a;
  margin: 0;
  font-size: clamp(1.1rem, 1.85vw, 2rem);
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.hero-highlight {
  display: inline-block;
  margin: 8px 0 0;
  background: #edf3ff;
  padding: 1px 10px 3px;
  color: #0f1a31;
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 800;
  line-height: 1.32;
  border-radius: 2px;
}

.hero-visual {
  height: 440px;
}

.node {
  position: absolute;
  border-radius: 18px;
  background: rgb(255 255 255 / 78%);
  border: 1px solid rgb(206 211 224 / 88%);
  box-shadow: 0 18px 38px rgb(43 52 79 / 11%);
  backdrop-filter: blur(1.2px);
}

.node::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 12px solid rgb(179 185 198 / 18%);
  border-radius: 20px;
  z-index: -1;
}

.node-icon {
  display: block;
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #4e5565;
}

.node-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2d3342;
  line-height: 1.25;
}

.node-sub {
  margin: 3px 0 0;
  font-size: 1.04rem;
  color: #99a1b6;
  line-height: 1.15;
}

.node-a,
.node-admin,
.node-b {
  width: 178px;
  min-height: 136px;
  padding: 24px 16px 16px;
}

.node-a {
  left: 22px;
  top: 38px;
  opacity: 0.88;
}

.node-admin {
  right: 18px;
  top: 58px;
  opacity: 0.88;
}

.node-admin .node-icon {
  color: #1dad75;
}

.node-b {
  right: 82px;
  top: 250px;
  opacity: 0.88;
}

.node-center {
  width: 226px;
  min-height: 184px;
  left: 50%;
  top: 162px;
  transform: translateX(-49%);
  padding: 34px 20px 20px;
  background: rgb(255 255 255 / 86%);
}

.node-center .cube {
  color: #2e67e5;
  font-size: 1.5rem;
}

.node-main {
  margin: 0;
  text-align: center;
  font-size: 2.05rem;
  color: #1e273e;
  font-weight: 800;
  line-height: 1.26;
}

.node-domain {
  margin: 7px 0 0;
  text-align: center;
  color: #8992aa;
  font-size: 0.92rem;
  line-height: 1.2;
}

.challenges {
  background: #f4f6fa;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

.challenges-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dbe2ef;
}

.mini-title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #4d73b2;
  font-weight: 800;
}

.challenges-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.35;
  color: #1b2337;
}

.head-dots {
  --dot-color: #4e86cf;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 124px;
  margin-left: auto;
  padding-top: 8px;
  flex-shrink: 0;
}

.head-dots[data-tone="green"] {
  --dot-color: #36b78b;
}

.head-dots[data-tone="yellow"] {
  --dot-color: #e3a523;
}

.head-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5dbe7;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}

.head-dots span.is-filled {
  width: 11px;
  height: 11px;
  background: var(--dot-color);
}

.challenge-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.challenge-card {
  background: rgb(255 255 255 / 60%);
  border: 1px solid #e0e5ef;
  border-radius: 14px;
  padding: 20px 24px 18px;
  box-shadow: 0 4px 20px rgb(42 53 84 / 6%);
}

.challenge-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.34;
  color: #1e2434;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 0.75rem;
  color: #fff;
  background: #f2b527;
  vertical-align: 2px;
  font-weight: 700;
}

.challenge-card p {
  margin: 10px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #565f76;
}

.pain-points {
  margin-top: 40px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 22px;
}

.pain-line {
  position: absolute;
  top: 48px;
  left: 9%;
  width: 82%;
  height: 2px;
  background: #ced6e4;
}

.pain-card {
  position: relative;
  background: rgb(255 255 255 / 52%);
  border: 1px solid #dbe1ec;
  border-radius: 12px;
  text-align: center;
  padding: 18px 12px 14px;
  box-shadow: 0 6px 18px rgb(42 53 84 / 7%);
}

.pain-icon {
  width: 44px;
  height: 44px;
  margin: -38px auto 8px;
  border-radius: 50%;
  background: #f1f4fa;
  border: 1px solid #e2e7f0;
  display: grid;
  place-items: center;
  color: #838ba0;
  font-weight: 700;
}

.pain-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.32;
  font-weight: 700;
  color: #21293d;
}

.pain-sub {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: #697289;
}

.pain-card.is-focus {
  border-width: 2px;
  border-color: #f0b64d;
}

.solution-concept {
  background: #f7f9fb;
  border-bottom: 1px solid #e3e8f1;
}

.solution-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.solution-head h2 {
  margin: 2px 0 0;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.3;
  color: #1f273c;
}

.solution-line {
  display: block;
  margin-top: 10px;
  width: 108px;
  height: 5px;
  border-radius: 99px;
  background: #9dc2f4;
}

.solution-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.solution-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  line-height: 1.42;
  color: #1e3f7c;
}

.solution-lead {
  margin: 14px 0 0;
  font-size: 1.02rem;
  color: #4f5971;
}

.solution-points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.solution-point {
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 14px;
  padding: 14px 16px 12px;
  box-shadow: 0 7px 18px rgb(45 58 93 / 7%);
}

.solution-point h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1d2438;
}

.solution-point h4 span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #edf4ff;
  color: #84a7db;
  margin-right: 8px;
  font-size: 0.78rem;
  vertical-align: 2px;
}

.solution-point p {
  margin: 6px 0 0;
  color: #59637b;
  font-size: 0.96rem;
}

.solution-diagram {
  position: relative;
  min-height: 428px;
}

.corp-card {
  position: absolute;
  background: rgb(255 255 255 / 78%);
  border: 1px solid #d7dfeb;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgb(39 51 84 / 10%);
  padding: 14px;
  min-width: 174px;
}

.corp-icon {
  margin: 0;
  text-align: center;
  font-size: 1.12rem;
  color: #7a96c1;
}

.corp-name {
  margin: 6px 0 0;
  text-align: center;
  font-weight: 700;
  color: #1f2536;
  font-size: 1.02rem;
}

.corp-domain {
  margin: 1px 0 0;
  text-align: center;
  color: #3a4357;
  font-size: 0.94rem;
}

.corp-a {
  top: 64px;
  left: 10px;
}

.corp-b {
  top: 64px;
  right: 20px;
}

.corp-c {
  top: 238px;
  left: 160px;
}

.corp-admin {
  top: 78px;
  left: 112px;
  z-index: 2;
  min-width: 220px;
  background: rgb(229 239 252 / 78%);
  border-color: #cbd9ef;
}

.corp-admin .corp-name {
  font-size: 1.02rem;
}

.corp-admin .corp-domain {
  display: inline-block;
  width: 100%;
  margin-top: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgb(255 255 255 / 56%);
}

.corp-c::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 4px;
  background: #e8b229;
}

.guest-box {
  position: absolute;
  top: 246px;
  right: 4px;
  width: 128px;
  padding: 12px 10px;
  text-align: center;
  border: 1px dashed #cfd8e8;
  border-radius: 10px;
  background: rgb(255 255 255 / 66%);
}

.guest-title {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  color: #242d43;
}

.guest-sub {
  margin: 0;
  font-size: 1rem;
  color: #464f65;
}

.line {
  position: absolute;
  background: #b9c4d8;
  transform-origin: left center;
}

.l1 {
  width: 90px;
  height: 2px;
  top: 154px;
  left: 98px;
}

.l2 {
  width: 78px;
  height: 2px;
  top: 154px;
  left: 334px;
}

.l3 {
  width: 2px;
  height: 82px;
  top: 180px;
  left: 254px;
}

.l4 {
  width: 120px;
  height: 2px;
  top: 258px;
  left: 255px;
  transform: rotate(20deg);
}

.feature-one {
  background: linear-gradient(103deg, #f6f8fb 0 66%, #e9eff9 66% 100%);
  border-bottom: 1px solid #e1e8f3;
}

.feature-one-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mini-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf1fd;
}

.feature-one-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.28;
  color: #121b2e;
}


.feature-one-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.feature-one-copy h3 {
  margin: 0;
  color: #1d253b;
  font-size: clamp(1.85rem, 2.95vw, 3rem);
  line-height: 1.33;
}

.feature-one-copy h3 em {
  display: block;
  font-style: normal;
  color: #2c9b73;
}

.feature-bullet {
  margin-top: 18px;
}

.bullet-title {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.4;
  font-weight: 800;
  color: #111b30;
}

.bullet-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e9f2ff;
  color: #6b8fc9;
  font-size: 1rem;
  vertical-align: -2px;
}

.bullet-ok {
  background: #e6f7ed;
  color: #4fa875;
}

.bullet-text {
  margin: 6px 0 0 48px;
  color: #4d586f;
  font-size: 1rem;
  line-height: 1.72;
}

.trust-box {
  margin-top: 16px;
  border: 2px solid #cae1f8;
  border-radius: 12px;
  background: rgb(244 249 255 / 70%);
  padding: 14px 16px;
}

.trust-title {
  margin: 0;
  color: #315f99;
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-text {
  margin: 5px 0 0;
  color: #51617c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.mail-mock {
  border-radius: 14px;
  border: 1px solid #d6dfec;
  background: rgb(255 255 255 / 74%);
  box-shadow: 0 16px 30px rgb(31 43 75 / 10%);
  overflow: hidden;
}

.mail-top {
  height: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e9edf4;
  border-bottom: 1px solid #d7deea;
}

.mail-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mail-top span:nth-child(1) {
  background: #f3b353;
}

.mail-top span:nth-child(2) {
  background: #f07f7f;
}

.mail-top span:nth-child(3) {
  background: #69c19a;
}

.mail-top p {
  margin: 0 0 0 auto;
  color: #758199;
  font-size: 0.84rem;
}

.mail-toolbar {
  border-bottom: 1px solid #e3e8f1;
  padding: 4px 12px;
  font-size: 1rem;
  color: #9ca7bd;
}

.mail-body {
  padding: 14px 18px 16px;
}

.mail-from {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #1c2437;
}

.mail-to {
  margin: 0;
  color: #7a859b;
  font-size: 0.84rem;
}

.mail-subject {
  margin: 9px 0 0;
  font-size: 1.28rem;
  font-weight: 800;
  color: #1c2437;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5eaf2;
}

.mail-text {
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #273047;
}

.mail-attachment {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid #d7e2f2;
  background: #eaf3ff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.attachment-url {
  margin: 0;
  font-size: 0.8rem;
  color: #7a88a5;
}

.attachment-name {
  margin: 2px 0 0;
  color: #1f273c;
  font-size: 1.01rem;
  font-weight: 700;
}

.attachment-exp {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: #8692aa;
}

.mail-attachment button {
  border: none;
  border-radius: 8px;
  background: #3f7dd6;
  color: #fff;
  min-width: 52px;
  height: 34px;
  font-size: 0.92rem;
  font-weight: 700;
}

.compare-boxes {
  border-top: 1px dashed #d5ddea;
  background: #f8fbff;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compare-card {
  border: 1px dashed #d6ddeb;
  border-radius: 10px;
  min-height: 78px;
  padding: 10px;
  text-align: center;
  background: #fff;
}

.compare-head {
  margin: 0;
  color: #8a95aa;
  font-size: 0.78rem;
}

.compare-body {
  margin: 8px 0 0;
  color: #c2c8d6;
  font-size: 1.04rem;
  font-weight: 700;
}

.compare-card.good .compare-head {
  color: #2862ba;
}

.compare-card.good .compare-body {
  color: #2f69cc;
}

.feature-two {
  background: linear-gradient(103deg, #f7f8fb 0 66%, #edf2f9 66% 100%);
  border-bottom: 1px solid #e1e7f2;
}

.mini-pill-green {
  background: #e7f5ee;
  color: #2d9a70;
}

.feature-two-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.feature-two-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}

.feature-two-line {
  display: block;
  margin-top: 10px;
  width: 108px;
  height: 5px;
  border-radius: 99px;
  background: #36b78b;
}

.feature-two-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.feature-two-copy h3 {
  margin: 0;
  color: #1f273b;
  font-size: clamp(1.85rem, 2.95vw, 2.95rem);
  line-height: 1.32;
}

.feature-two-copy h3 em {
  display: block;
  font-style: normal;
  color: #2c9b73;
}

.feature-two-item {
  margin-top: 18px;
}

.feature-two-title {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.38;
  color: #111b30;
}

.feature-two-icon {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #5ab891;
  color: #2f9d74;
  font-size: 0.94rem;
  vertical-align: -2px;
}

.feature-two-text {
  margin: 6px 0 0 48px;
  color: #4f5a72;
  font-size: 1rem;
  line-height: 1.72;
}

.feature-two-note {
  margin-top: 16px;
  border-radius: 12px;
  border: 2px solid #b8e0cb;
  background: rgb(236 248 241 / 70%);
  padding: 14px 16px;
}

.feature-two-note-title {
  margin: 0;
  color: #2c7b5d;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-two-note-text {
  margin: 5px 0 0;
  color: #51617a;
  font-size: 0.95rem;
  line-height: 1.66;
}

.feature-two-visual {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
}

.admin-url-window {
  width: min(520px, 96%);
  border-radius: 16px;
  background: rgb(255 255 255 / 88%);
  border: 1px solid #dbe2ed;
  box-shadow: 0 18px 26px rgb(36 48 80 / 11%);
  padding: 10px 14px 12px;
}

.admin-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.admin-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.admin-dots span:nth-child(1) {
  background: #f4bb59;
}

.admin-dots span:nth-child(2) {
  background: #f08383;
}

.admin-dots span:nth-child(3) {
  background: #6fc699;
}

.admin-url {
  margin-top: 6px;
  height: 34px;
  border: 1px solid #e2e7f0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #9aa5bc;
  font-size: 0.92rem;
  background: #f8fbff;
}

.feature-three {
  background: linear-gradient(103deg, #f7f8fb 0 66%, #edf2f9 66% 100%);
  border-bottom: 1px solid #e1e7f2;
}

.feature-three-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.feature-three-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}

.feature-three-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.feature-three-copy h3 {
  margin: 0;
  color: #1f273b;
  font-size: clamp(1.85rem, 2.95vw, 2.95rem);
  line-height: 1.32;
}

.feature-three-copy h3 em {
  display: block;
  font-style: normal;
  color: #2c9b73;
}

.feature-three-visual {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  align-content: center;
}

.step-card {
  background: rgb(255 255 255 / 84%);
  border: 1px solid #d8deeb;
  border-radius: 14px;
  box-shadow: 0 11px 22px rgb(40 52 84 / 10%);
  padding: 14px 12px;
  min-height: 206px;
  display: flex;
  flex-direction: column;
}

.step-3 {
  border: 2px dashed #9ad5c0;
  background: rgb(245 251 248 / 85%);
}

.step-icon {
  margin: 0;
  font-size: 1.3rem;
  text-align: center;
}

.step-title {
  margin: 10px 0 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1b243a;
}

.step-meta {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: #3c9a78;
  font-weight: 700;
}

.step-desc {
  margin: 14px 0 0;
  color: #49556e;
  font-size: 0.92rem;
  line-height: 1.6;
}

.step-desc.is-center {
  text-align: center;
  margin-top: auto;
  padding-bottom: 4px;
}

.step-guest {
  margin: 7px 0 0;
  text-align: center;
  color: #616d87;
  font-size: 0.88rem;
  border-bottom: 4px solid #37b283;
  padding-bottom: 4px;
}

.step-arrow {
  font-size: 2rem;
  color: #c2cbdb;
  line-height: 1;
}

.feature-three-chip {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 14px;
  background: #fff;
  border: 1px solid #dbe2ef;
  border-radius: 999px;
  padding: 7px 16px;
  color: #28344e;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgb(48 60 90 / 8%);
}

.feature-slider {
  position: relative;
  height: var(--feature-panel-height, auto);
}

.feature-slider-sticky {
  position: relative;
  top: 0;
  height: var(--feature-panel-height, auto);
  overflow: hidden;
}

.feature-slider-track {
  display: flex;
  width: 300vw;
  height: auto;
  align-items: stretch;
  will-change: transform;
}

.feature-slide {
  width: 100vw;
  min-height: var(--feature-panel-height, auto);
  flex: 0 0 100vw;
  display: flex;
  align-items: flex-start;
}

.feature-slide.section {
  padding: 56px 0;
}

.security-note-section {
  background: linear-gradient(103deg, #f8f9fb 0 66%, #eef2f8 66% 100%);
  border-bottom: 1px solid #e2e7f2;
  padding-top: 24px;
}

.mini-pill-yellow {
  background: #fcf3d9;
  color: #a97910;
}


.security-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.security-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}

.security-line {
  display: block;
  margin-top: 10px;
  width: 108px;
  height: 5px;
  border-radius: 99px;
  background: #e3a523;
}

.security-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.security-primary {
  border: 2px solid #edbb52;
  background: rgb(252 248 236 / 72%);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 14px 24px rgb(54 66 95 / 8%);
}

.security-primary h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
  color: #1c2439;
}

.security-sub {
  margin: 2px 0 0 44px;
  font-size: 0.95rem;
  color: #4a566f;
  font-weight: 700;
}

.security-copy {
  margin: 16px 0 0;
  color: #303a52;
  font-size: 1rem;
  line-height: 1.7;
}

.security-copy strong {
  color: #1b2338;
}

.security-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f4f8;
  border: 1px solid #dbe0e8;
  color: #566180;
  margin-right: 10px;
  vertical-align: -2px;
  font-size: 0.95rem;
}

.security-icon.red {
  background: #ffeef1;
  border-color: #f9d5dc;
  color: #d74e6d;
}

.security-icon.blue {
  background: #edf3ff;
  border-color: #d4e2fb;
  color: #5083d8;
}

.session-card {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid #e5d9b5;
  background: #fff;
  padding: 14px 14px 12px;
}

.session-head {
  display: flex;
  justify-content: space-between;
  color: #8e97a8;
  font-size: 0.8rem;
  font-weight: 700;
}

.session-days {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.session-days span {
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid #e7d998;
  background: #fff9dd;
  color: #bd9121;
  font-weight: 800;
}

.session-card p {
  margin: 9px 0 0;
  color: #8490a8;
  font-size: 0.82rem;
}

.security-side {
  display: grid;
  gap: 18px;
}

.security-card {
  background: rgb(255 255 255 / 78%);
  border: 1px solid #dde4ef;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 22px rgb(41 54 85 / 8%);
}

.security-card h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #182238;
}

.security-card p {
  margin: 8px 0 0;
  color: #444f67;
  font-size: 1rem;
  line-height: 1.68;
}

.security-badge {
  display: inline-block;
  margin-top: 12px;
  background: #ffeef1;
  border: 1px solid #fad2dc;
  color: #d44f6d;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.capacity-section {
  background: linear-gradient(103deg, #f8f9fb 0 66%, #edf2f8 66% 100%);
  border-bottom: 1px solid #e2e8f3;
}

.mini-pill-blue {
  background: #e8f1fd;
  color: #4677be;
}

.capacity-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.capacity-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}

.capacity-line {
  display: block;
  margin-top: 10px;
  width: 108px;
  height: 5px;
  border-radius: 99px;
  background: #4b83cc;
}


.capacity-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.capacity-copy h3 {
  margin: 0;
  color: #1f273b;
  font-size: clamp(1.85rem, 2.95vw, 2.95rem);
  line-height: 1.32;
}

.capacity-copy h3 em {
  display: block;
  font-style: normal;
  color: #3d6ebd;
}

.capacity-item {
  margin-top: 18px;
}

.capacity-title {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.38;
  color: #111b30;
}

.capacity-icon {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #90aed9;
  color: #4f7cba;
  font-size: 0.92rem;
  vertical-align: -2px;
}

.capacity-text {
  margin: 6px 0 0 48px;
  color: #4f5a72;
  font-size: 1rem;
  line-height: 1.72;
}

.capacity-note {
  margin-top: 16px;
  border-radius: 12px;
  border: 2px solid #c7ddf7;
  background: rgb(238 245 255 / 70%);
  padding: 14px 16px;
}

.capacity-note-title {
  margin: 0;
  color: #335f98;
  font-size: 1.05rem;
  font-weight: 800;
}

.capacity-note-text {
  margin: 5px 0 0;
  color: #51617a;
  font-size: 0.95rem;
  line-height: 1.66;
}

.capacity-note-chip {
  margin: 10px 0 0;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #c4d8ef;
  background: #fff;
  color: #35639e;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 6px 12px;
}

.capacity-visual {
  display: grid;
  gap: 14px;
}

.capacity-chart {
  border-radius: 14px;
  border: 1px solid #dbe2ee;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 12px 24px rgb(41 54 85 / 8%);
  padding: 14px 16px 12px;
}

.chart-title {
  margin: 0;
  color: #3f4d67;
  font-weight: 700;
  font-size: 0.94rem;
}

.bars {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: end;
  gap: 6px;
  padding: 0 10px 8px;
  border-bottom: 3px solid #e0e6f1;
}

.bar-wrap {
  text-align: center;
}

.bar {
  width: 78px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  border: 1px solid #cfd8e8;
  background: linear-gradient(#f1f5fb 52%, #d8e3f4 52%);
  display: grid;
  place-items: center;
  color: #2c4368;
  font-weight: 800;
}

.bar span {
  font-size: 0.9rem;
}

.b20 {
  height: 84px;
}

.b50 {
  height: 110px;
}

.b1t {
  height: 136px;
  background: linear-gradient(#7ea0d8 52%, #4472b8 52%);
  color: #fff;
}

.bar-wrap p {
  margin: 6px 0 0;
  color: #45536f;
  font-size: 0.98rem;
  font-weight: 700;
}

.bar-arrow {
  color: #c2cbdb;
  font-size: 1.8rem;
  padding-bottom: 34px;
}

.capacity-bottom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.capacity-small-card {
  border-radius: 12px;
  border: 1px solid #dce3ef;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 10px 20px rgb(42 55 86 / 8%);
  padding: 14px 14px 12px;
}

.small-title {
  margin: 0;
  color: #1d2740;
  font-size: 1rem;
  font-weight: 800;
}

.small-text {
  margin: 6px 0 0;
  color: #4f5b73;
  font-size: 0.92rem;
  line-height: 1.64;
}

.lock-card {
  text-align: center;
  background: rgb(248 249 252 / 85%);
}

.lock-icon {
  margin: 0;
  font-size: 2rem;
}

.lock-card .small-title {
  margin-top: 4px;
}

.lock-chip {
  margin: 6px 0 0;
  display: inline-block;
  color: #3d6eb6;
  font-weight: 700;
  background: #eef4ff;
  border-radius: 999px;
  padding: 5px 10px;
}

.pricing-plan-section {
  background: linear-gradient(103deg, #f8f9fb 0 66%, #edf2f8 66% 100%);
  border-bottom: 1px solid #e2e8f3;
}

.pricing-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pricing-plan-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}


.pricing-plan-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-box {
  position: relative;
  border-radius: 14px;
  border: 1px solid #dbe2ee;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 12px 24px rgb(41 54 85 / 8%);
  padding: 16px 18px 14px;
}

.plan-box.is-recommend {
  border: 2px solid #2db183;
}

.recommend-tag {
  position: absolute;
  top: -2px;
  right: -2px;
  margin: 0;
  background: #2db183;
  color: #fff;
  font-size: 0.78rem;
  padding: 5px 9px;
  border-radius: 0 12px 0 10px;
  font-weight: 700;
}

.plan-badge {
  margin: 0;
  display: inline-block;
  border-radius: 8px;
  background: #eef1f6;
  color: #4f5b73;
  padding: 4px 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.plan-badge.is-blue {
  background: #e6effd;
  color: #3c74be;
}

.plan-badge.is-green {
  background: #e8f6ef;
  color: #2e9f75;
}

.plan-cap {
  margin: 10px 0 0;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 800;
  color: #1a253d;
}

.plan-target {
  margin: 8px 0 0;
  color: #3e4c68;
  line-height: 1.6;
  font-size: 0.98rem;
}

.plan-price {
  margin: 12px 0 0;
  font-weight: 800;
  color: #22314f;
  font-size: 3rem;
  line-height: 1;
}

.plan-price small {
  font-size: 0.96rem;
  margin: 0 4px 0 0;
}

.plan-price.is-green {
  color: #1f9b72;
}

.plan-note {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: #4a566f;
  font-weight: 700;
}

.plan-box hr {
  border: 0;
  border-top: 1px solid #e1e6ef;
  margin: 14px 0 10px;
}

.plan-feature-head {
  margin: 0;
  color: #2a3b5f;
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-feature-head.is-green {
  color: #2b9f75;
}

.plan-box ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.plan-box li {
  position: relative;
  padding-left: 20px;
  color: #2f3d5a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.plan-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f8e67;
  font-size: 0.88rem;
}

.is-green-list li::before {
  color: #1f9b72;
}

.pricing-bottom {
  margin-top: 16px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: rgb(255 255 255 / 70%);
  box-shadow: 0 8px 18px rgb(42 55 86 / 7%);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pricing-bottom-card {
  padding: 12px 16px;
}

.pricing-bottom-card + .pricing-bottom-card {
  border-left: 1px solid #e2e8f2;
}

.pricing-bottom-title {
  margin: 0;
  color: #25314d;
  font-weight: 800;
  font-size: 1rem;
}

.pricing-bottom-text {
  margin: 4px 0 0;
  color: #4d5972;
  font-size: 0.9rem;
  line-height: 1.6;
}

.comparison-section {
  background: linear-gradient(103deg, #f8f9fb 0 66%, #edf2f8 66% 100%);
}

.comparison-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.comparison-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.45vw, 3.2rem);
  line-height: 1.3;
  color: #111b30;
}


.comparison-sub {
  margin: 14px 0 0;
  color: #2a3755;
  font-size: 1.9rem;
  font-weight: 800;
}

.comparison-table {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border: 1px solid #dbe2ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgb(41 54 85 / 8%);
}

.table-head {
  background: #f1f4f9;
  color: #2a3652;
  font-weight: 800;
  padding: 12px 14px;
  border-bottom: 1px solid #e0e6f1;
}

.team-head {
  background: #4f81c4;
  color: #fff;
}

.label {
  background: #f8fafc;
  color: #22304d;
  font-weight: 800;
  padding: 12px 14px;
  border-top: 1px solid #e2e8f2;
}

.cell {
  padding: 10px 14px;
  border-top: 1px solid #e2e8f2;
  color: #25324f;
  font-weight: 700;
  line-height: 1.45;
}

.cell span {
  color: #5a6781;
  font-size: 0.88rem;
  font-weight: 600;
}

.cell.team {
  background: #eef4fd;
  color: #234a83;
}

.next-actions {
  margin-top: 16px;
}

.next-title {
  margin: 0 0 8px;
  color: #3a4f73;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.next-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #dbe2ef;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 10px 20px rgb(42 55 86 / 7%);
  padding: 14px 16px 12px;
}

.next-card::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 10px;
  color: #c0c9d9;
  font-size: 1.5rem;
}

.next-card-title {
  margin: 0;
  color: #1e2a43;
  font-size: 1.05rem;
  font-weight: 800;
}

.next-card-text {
  margin: 6px 0 0;
  color: #4f5c75;
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  background: #1a253f;
  color: #d7def0;
}

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

.footer-logo {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-copy {
  margin: 6px 0 0;
  color: #b8c2d8;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.86rem;
  font-weight: 700;
  max-width: 520px;
}

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

.footer-bottom {
  margin: 0;
  text-align: center;
  padding: 10px 12px 14px;
  border-top: 1px solid #2a3657;
  font-size: 0.78rem;
  color: #9eabc8;
}

.check-list {
  margin: 0 0 28px;
  padding-left: 18px;
}

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

.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgb(28 48 120 / 8%);
}

.panel-title {
  margin: 2px 0 14px;
  font-size: 0.93rem;
  color: var(--muted);
  font-weight: 700;
}

.panel-item + .panel-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.panel-item h3 {
  margin: 0 0 4px;
  font-size: 1.03rem;
}

.panel-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

.feature-card {
  margin-top: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.feature-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #eff4ff;
  border: 1px solid #c7d6ff;
  font-weight: 800;
}

.feature-card h3 {
  margin: 2px 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.security-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.security-box h3 {
  margin: 0 0 8px;
}

.security-box p {
  margin: 0;
  color: var(--muted);
}

.warning {
  border-color: #f3c3c3;
  background: #fff9f9;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.plan-name {
  margin: 0;
  color: var(--muted);
}

.plan-size {
  margin: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 800;
}

.featured {
  border-color: #b8c9ff;
  box-shadow: 0 12px 28px rgb(38 70 196 / 15%);
}

.sub-note {
  margin: 20px 0 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 22px;
}

.pricing-card h3 {
  margin: 0;
}

.price {
  margin: 8px 0;
  font-weight: 800;
  font-size: 1.25rem;
}

.cta {
  background: linear-gradient(120deg, #1f41c7, #244ef2 45%, #3565ff);
  color: #fff;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.cta-inner p {
  margin: 10px 0 22px;
  color: rgb(255 255 255 / 88%);
}

.cta .btn {
  background: #fff;
  color: #1f41c7;
}

.cta .btn:hover {
  background: #eaf0ff;
}

@media (max-width: 920px) {
  .hero-grid,
  .challenge-grid,
  .pain-points,
  .security-grid,
  .plan-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .header-nav-desktop {
    display: none;
  }

  .header-menu-btn {
    display: inline-block;
  }

  .mobile-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid #dbe4f2;
    background: rgb(249 251 255 / 98%);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .mobile-menu a {
    border: 1px solid #d8e0ef;
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    color: #2f466f;
    font-size: 0.82rem;
    font-weight: 700;
    background: #fff;
  }

  .mobile-menu[aria-hidden="false"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    display: none;
  }

  .hero-highlight {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .challenges-head {
    border-bottom: none;
    padding-bottom: 0;
  }

  .head-dots,
  .pain-line {
    display: none;
  }

  .challenges-head h2 {
    font-size: 1.6rem;
  }

  .challenge-card h3 {
    font-size: 1.24rem;
  }

  .challenge-card p {
    font-size: 1rem;
  }

  .pain-card {
    padding-top: 26px;
  }

  .pain-icon {
    margin-top: -30px;
  }

  .solution-head h2 {
    font-size: 1.8rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-diagram {
    min-height: 280px;
    overflow: hidden;
  }

  .corp-card,
  .guest-box,
  .line {
    transform: scale(0.82);
    transform-origin: top left;
  }

  .corp-a {
    top: 40px;
    left: 0;
  }

  .corp-b {
    top: 42px;
    right: -40px;
  }

  .corp-admin {
    top: 56px;
    left: 72px;
  }

  .corp-c {
    top: 174px;
    left: 102px;
  }

  .guest-box {
    top: 176px;
    right: -18px;
  }

  .l1 {
    top: 124px;
    left: 84px;
  }

  .l2 {
    top: 124px;
    left: 286px;
  }

  .l3 {
    top: 146px;
    left: 212px;
  }

  .l4 {
    top: 212px;
    left: 214px;
  }

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

  .feature-one-head h2 {
    font-size: 1.72rem;
  }

  .feature-one-copy h3 {
    font-size: 1.7rem;
  }

  .bullet-title {
    font-size: 1.2rem;
  }

  .bullet-text {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .mail-subject {
    font-size: 1.05rem;
  }

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

  .feature-two-head h2 {
    font-size: 1.72rem;
  }

  .feature-two-copy h3 {
    font-size: 1.65rem;
  }

  .feature-two-title {
    font-size: 1.2rem;
  }

  .feature-two-text {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .feature-two-visual {
    min-height: 120px;
  }

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

  .feature-three-head h2 {
    font-size: 1.72rem;
  }

  .feature-three-copy h3 {
    font-size: 1.65rem;
  }

  .feature-three-visual {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .step-card {
    min-height: auto;
  }

  .step-arrow {
    display: none;
  }

  .feature-three-chip {
    text-align: center;
    border-radius: 12px;
    padding: 10px 12px;
  }

  .feature-slider {
    height: auto;
  }

  .feature-slider-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }

  .feature-slider-track {
    display: block;
    width: auto;
    transform: none !important;
  }

  .feature-slide {
    width: auto;
    min-height: auto;
    display: block;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-head h2 {
    font-size: 1.72rem;
  }

  .security-primary h3,
  .security-card h3 {
    font-size: 1.3rem;
  }

  .security-sub {
    margin-left: 0;
  }

  .session-days span {
    height: 36px;
  }

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

  .capacity-head h2 {
    font-size: 1.72rem;
  }

  .capacity-copy h3 {
    font-size: 1.65rem;
  }

  .capacity-title {
    font-size: 1.2rem;
  }

  .capacity-text {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .bars {
    grid-template-columns: 1fr;
    border-bottom: none;
    gap: 10px;
  }

  .bar-arrow {
    display: none;
  }

  .bar-wrap p {
    margin-top: 4px;
  }

  .capacity-bottom-cards {
    grid-template-columns: 1fr;
  }

  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan-head h2 {
    font-size: 1.72rem;
  }

  .plan-cap {
    font-size: 2.15rem;
  }

  .plan-price {
    font-size: 2.3rem;
  }

  .pricing-bottom {
    grid-template-columns: 1fr;
  }

  .pricing-bottom-card + .pricing-bottom-card {
    border-left: 0;
    border-top: 1px solid #e2e8f2;
  }

  .comparison-head h2 {
    font-size: 1.72rem;
  }

  .comparison-sub {
    font-size: 1.3rem;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .table-head,
  .label,
  .cell {
    border-top: 1px solid #e2e8f2;
  }

  .table-head:first-child {
    border-top: 0;
  }

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

  .header-inner {
    min-height: 58px;
  }

  .header-cta {
    font-size: 0.78rem;
    padding: 7px 11px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .footer-nav {
    max-width: none;
    justify-content: flex-start;
  }
}
