/* ============================================
   Variables
   ============================================ */
:root {
  --brand-blue: #1F7A4D;
  --brand-blue-light: #45B07A;
  --brand-blue-soft: #EAF6EF;
  --text-main: #0c1b3b;
  --text-sub: #55627a;
  --bg: #ffffff;
  --shadow-soft: 0 20px 40px rgba(17, 63, 124, 0.15);
  --radius-xl: 32px;
}

/* ============================================
   Reset / Base
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-padding-top: 50px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('../img/common/background.png') center / cover no-repeat;
  filter: brightness(1.03);
}

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

/* ============================================
   Header / Navigation
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222, 231, 246, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
  line-height: 0;
  text-decoration: none;
}

.logo-image-full {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-sub);
}

.nav-menu a {
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  transition: width 0.2s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: radial-gradient(circle at 15% 0, var(--brand-blue-light), var(--brand-blue));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0, 128, 0, 0.45);
  cursor: pointer;
  white-space: nowrap;
}

.nav-contact-btn span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

/* ============================================
   Layout
   ============================================ */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 110px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
  gap: 32px;
  align-items: start;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ff80, #008000);
}

.hero-title {
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-primary-btn {
  padding: 12px 26px;
  border: none;
  border-radius: 999px;
  background: radial-gradient(circle at 15% 0, var(--brand-blue-light), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 20px 40px rgba(35, 104, 209, 0.4);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.hero-primary-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 24px 50px rgba(35, 104, 209, 0.48);
}

.hero-note {
  font-size: 12px;
  color: var(--text-sub);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-sub);
}

.hero-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f7fb;
}

/* --- Hero Visual --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: 90px;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 620px;
  padding: 24px 24px 28px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 10% 0, #eef4ff, #ffffff 40%, #e4f0ff 100%);
  box-shadow: 0 30px 80px rgba(21, 79, 160, 0.35);
  overflow: hidden;
  box-sizing: border-box;
}

.chat-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* --- Service Logo --- */
.hero-service-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height: 256px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 10px 22px rgba(17, 63, 124, 0.08);
  margin-bottom: 14px;
  box-sizing: border-box;
}

.hero-service-logo-img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 460px;
  object-fit: contain;
}

/* --- Feature Icons --- */
.hero-feature-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  margin-top: 24px;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 140px;
  font-size: 13px;
  color: var(--text-main);
}

.hero-feature-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #fbfdff, #e3efff);
  box-shadow: 0 12px 30px rgba(34, 86, 164, 0.3);
  font-size: 32px;
  color: #2f66c5;
}

.hero-feature-label {
  text-align: center;
}

/* ============================================
   Pain Section（悩み共感）
   ============================================ */
.full-bleed-white {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 76px;
}

.pain {
  border-top: 1px solid rgba(222, 231, 246, 0.9);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f7fb;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.section-lead {
  margin-top: 12px;
  max-width: 760px;
  color: var(--text-sub);
  font-size: 16px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pain-card {
  position: relative;
  min-height: 210px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 14px 28px rgba(17, 63, 124, 0.08);
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 128, 0.25), rgba(0, 94, 0, 0.02));
  transform: rotate(10deg);
  pointer-events: none;
}

.pain-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, rgba(0, 255, 128, 0.25), rgba(0, 94, 0, 0.02));
  border: 1px solid rgba(0, 255, 128, 0.45);
  color: var(--text-main);
  font-weight: 800;
}

.pain-card h3 {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.pain-card p {
  margin-top: 10px;
  color: var(--text-sub);
  font-size: 14px;
}

.pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid rgba(222, 231, 246, 0.85);
  font-size: 12px;
  color: var(--text-sub);
}

.pain-tag b {
  color: var(--text-main);
}

/* ============================================
   Solve Section（課題解決パネル）
   ============================================ */
.full-bleed-panel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f5f5f5;
  box-shadow: 0 22px 46px rgba(13, 34, 76, 0.16);
}

.full-bleed-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 26px solid #fff;
}

.solve {
  padding-top: 34px;
}

.solve-head {
  text-align: left;
}

.solve-title {
  margin-top: 18px;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.solve-sub {
  margin-top: 10px;
  color: var(--text-sub);
  font-size: 16px;
}

.solve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.solve-card {
  position: relative;
  min-height: 210px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 14px 28px rgba(17, 63, 124, 0.10);
  overflow: hidden;
}

.solve-pill b {
  color: var(--text-main);
}

/* ============================================
   Video Demo Section
   ============================================ */
.full-bleed-panel-video {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--brand-blue-soft);
  box-shadow: 0 22px 46px rgba(13, 34, 76, 0.16);
}

.full-bleed-panel-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-top: 26px solid #fff;
}

.video-demo {
  padding-top: 34px;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  margin-top: 26px;
}

.video-copy {
  max-width: 520px;
}

.video-title {
  margin-top: 18px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.video-lead {
  margin-top: 10px;
  color: var(--text-sub);
  font-size: 16px;
}

.video-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.video-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-sub);
  font-size: 14px;
}

.video-points li .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, rgba(104, 177, 255, 0.40), rgba(34, 86, 164, 0.10));
  border: 1px solid rgba(120, 178, 255, 0.5);
  color: var(--brand-blue);
  font-weight: 900;
  font-size: 12px;
}

.video-shell {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 18px 40px rgba(17, 63, 124, 0.14);
  overflow: hidden;
}

.video-embed {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(104, 177, 255, 0.25), rgba(34, 86, 164, 0.06));
}

.video-embed > iframe,
.video-embed > video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-embed > video {
  object-fit: cover;
}

.video-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(222, 231, 246, 0.85);
  color: var(--text-sub);
  font-size: 12px;
}

.video-caption b {
  color: var(--text-main);
}

/* ============================================
   Architecture Section
   ============================================ */
.architecture-inner {
  padding: 72px 24px;
}

.architecture-head {
  max-width: 720px;
}

.architecture-figure {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 16px 32px rgba(17, 63, 124, 0.08);
}

.architecture-image {
  display: block;
  width: 100%;
  height: auto;
}

.architecture-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-sub);
}

/* ============================================
   Download Section
   ============================================ */
.download {
  background: #f3f6fb;
  border-top: 1px solid rgba(222, 231, 246, 0.9);
  border-bottom: 1px solid rgba(222, 231, 246, 0.9);
}

.download-inner {
  padding: 28px 24px;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.download-lead {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-sub);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #800080, #4d004d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(62, 76, 99, 0.35);
  white-space: nowrap;
}

.download-btn:hover {
  filter: brightness(1.06);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-inner {
  padding: 76px 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 12px 26px rgba(17, 63, 124, 0.06);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.02em;
  list-style: none;
  cursor: pointer;
}

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

.faq-q::after {
  content: "＋";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(245, 247, 251, 0.9);
  border: 1px solid rgba(222, 231, 246, 0.95);
  font-weight: 900;
  color: var(--text-sub);
}

.faq-item[open] .faq-q::after {
  content: "−";
}

.faq-item[open] .faq-q {
  border-bottom: 1px solid rgba(222, 231, 246, 0.85);
  background: rgba(245, 247, 251, 0.6);
}

.faq-a {
  padding: 0 18px 16px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.75;
}

.faq-a p {
  margin-top: 10px;
}

/* ============================================
   Company Section
   ============================================ */
.company-dl {
  margin-top: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  overflow: hidden;
}

.company-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid rgba(222, 231, 246, 0.85);
}

.company-row:first-child {
  border-top: 0;
}

.company-row dt {
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-row dd {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.5fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.contact-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 14px 28px rgba(17, 63, 124, 0.08);
}

.hubspot-embed {
  min-height: 800px;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-side-box {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(222, 231, 246, 0.95);
}

.contact-side-title {
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-main);
}

.contact-side-list {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
  color: var(--text-sub);
  font-size: 13px;
}

.contact-side-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-side-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5ea9ff, #2256a4);
}

.contact-note {
  margin-top: 16px;
  color: var(--text-sub);
  font-size: 12px;
}

/* ============================================
   Download LP Page
   ============================================ */
.lp-contact-grid {
  display: grid;
  gap: 18px;
  align-items: start;
  width: min(100%, 1200px);
  max-width: 1200px;
  margin: 28px auto 0;
}

.lp-contact-panel {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(222, 231, 246, 0.95);
  box-shadow: 0 14px 28px rgba(17, 63, 124, 0.08);
}

.lp-hs-form-wrap {
  min-height: 400px;
}

.lp-download-section-title {
  margin-top: 14px;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.lp-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f7f8fa;
  border-top: 1px solid rgba(222, 231, 246, 0.9);
}

.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.lp-footer-copy {
  width: 100%;
  font-size: 11px;
  color: var(--text-sub);
  text-align: center;
}

/* ============================================
   Page Top Button
   ============================================ */
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #00d269;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

/* ============================================
   Responsive ≤ 960px（Tablet）
   ============================================ */
@media (max-width: 960px) {

  header          { position: static; }
  main            { padding-top: 12px; }

  /* Nav */
  .nav-inner      { padding-inline: 16px; }
  .nav-menu       { gap: 18px; font-size: 13px; }

  /* Logo centering */
  .logo-area,
  .logo-mark {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo-image-full { width: 180px; }

  /* Hero grid → single column */
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-copy      { order: 1; }
  .hero-title     { font-size: 34px; }

  /* Visual → full width */
  .hero-visual {
    order: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-visual-inner {
    overflow: visible;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  /* Service logo → fluid */
  .hero-service-logo {
    height: auto;
    max-width: 100%;
  }

  .hero-service-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
  }

  /* Feature icons → flexible */
  .hero-feature {
    width: auto;
    flex: 1 1 0%;
    min-width: 0;
  }

  .hero-feature-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

/* ============================================
   Responsive ≤ 720px（Mobile）
   ============================================ */
@media (max-width: 720px) {

  main { padding-top: 18px; }

  /* Nav */
  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-menu {
    width: 100%;
    justify-content: flex-end;
  }

  /* Hero */
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    min-height: auto;
  }

  .hero-copy      { order: 1; }
  .hero-visual    { order: 0; }
  .hero-title     { font-size: 34px; }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-primary-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  /* Visual inner */
  .hero-visual-inner {
    padding: 20px 18px 24px;
    max-width: 100%;
  }

  /* Service logo */
  .hero-service-logo {
    padding: 8px 10px;
    margin-bottom: 12px;
  }

  .hero-service-logo-img {
    max-height: 160px;
  }

  /* Feature icons */
  .hero-feature-icons { gap: 12px; }

  .hero-feature-icon-circle {
    width: 48px;
    height: 48px;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(34, 86, 164, 0.25);
  }

  .hero-feature-label { font-size: 11px; }

  /* Section grids → single column */
  .pain-grid          { grid-template-columns: 1fr; }
  .solve-grid         { grid-template-columns: 1fr; }
  .video-layout       { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }

  /* Notch size */
  .full-bleed-panel::before {
    border-left-width: 30px;
    border-right-width: 30px;
    border-top-width: 22px;
  }

  /* Architecture */
  .architecture-inner { padding: 56px 16px; }
  .architecture-figure { padding: 16px; }

  /* Download */
  .download-content {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Company */
  .company-inner { padding: 52px 16px; }
  .company-row   { grid-template-columns: 1fr; gap: 6px; }

  /* Contact */
  .contact-inner { padding: 58px 16px; }

  /* Footer */
  .lp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
