:root {
  --momo-magenta: #D81B60;
  --momo-coral: #F06292;
  --momo-sunset: #FF8A65;
  --momo-gold: #FBC02D;
  --momo-navy: #0D2E6E;
  /* --momo-navy: #1A237E; */
  /* --momo-green: rgb(15 118 110); */
  /* 1446a0-fbc02d-d81b60-f06292-ffffff */
  --momo-gradient: linear-gradient(45deg, var(--momo-magenta) 0%, var(--momo-coral) 35%, var(--momo-sunset) 70%, var(--momo-gold) 100%);
  /* --momo-gradient: linear-gradient(135deg,rgba(15, 118, 110, 1) 19%, rgba(30, 58, 95, 1) 100%); */
  --text-dark: #212121;
  --text-gray: #616161;
  --bg-light: #F5F5F5;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --font-secondary-small: 12px;
  --font-secondary-middle: 14px;
  --font-secondary-big: 16px;
  --font-primary-small: 16px;
  --font-primary-middle: 24px;
  --font-primary-big: clamp(22px, 4vw, 36px);
  --image-border-radius-s: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-section {
  height: 60px;
  padding: 0;
}

section#v {
  background: linear-gradient(90deg, #F5F5F5 0%, #fff 100%);
  padding-bottom: 20px;
}

section#hero {
  background: linear-gradient(90deg, #F5F5F5 0%, #fff 100%);
  padding: 0;
  padding-top: 60px;
  padding-bottom: 24px;
}

section {
  padding: 80px 0;
  background: #fff;
}

section:nth-of-type(odd):not(#hero):not(.dark):not(.gradient-bg) {
  background: var(--bg-light);
}

section.dark {
  background: var(--momo-navy);
}

section.gradient-bg {
  padding-top: 80px;
  background: var(--white);
}

section.gradient-bg h2 {
  color: var(--text-dark);
  /* text-align: center; */
}


/* ── Typography ── */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h3 {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.4;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--momo-magenta);
  margin-bottom: 12px;
  display: block;
}

/* .section-label.white {
  color: var(--white);
} */

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

.section-line {
  width: 48px;
  height: 2px;
  background: var(--momo-magenta);
  margin: 16px 0 40px 0;
}

.section-line.gold {
  background: var(--momo-magenta);
}

.section-line.white {
  background: rgba(255, 255, 255, 0.5);
}


/* ── Gradient text ── */

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/*
.btn-primary {
  background: var(--momo-navy);
  color: #FFFFFF !important;
}
*/
.btn-primary {
  background: var(--momo-gradient);
  color: #FFFFFF !important;
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(26, 35, 126, 0.8);
  color: var(--momo-navy);
}


.btn-navy {
  background: var(--momo-navy);
  color: #FFFFFF !important;
  font-weight: 500;
}


.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* background: rgba(26, 35, 126, 0.9); */
  background: var(--momo-navy);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-company {
  font-size: 12px;
  color: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.nav-brand span {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo p {
  line-height: 1;
  font-size: 10px;
  font-weight: 300;
  color: var(--white);
  margin-left: 0;
}

.nav-cta {
  padding: 8px 22px;
  font-size: 12px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 32px 0px;
}

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


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 35, 126, 0.05);
  border: 1px solid rgba(26, 35, 126, 0.15);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--momo-navy);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--momo-magenta);
  border-radius: 50%;
  display: inline-block;
}

.hero-text h1 {
  color: var(--momo-navy);
  margin-bottom: 24px;
}

.hero-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: var(--font-secondary-big);
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* .hero-stats div {
  display: flex;
  flex-direction: column;
  position: relative;
} */

.hero-stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-stat-num {
  font-weight: 700;
  font-size: 28px;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.hero-stat-list {
  margin-top: 10px;
  font-weight: 300;
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  line-height: 1;
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.hero-stat-list li {
  border: 2px solid var(--border);
  border-left: 2px solid var(--momo-magenta);
  padding: 4px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  flex: 0 1 auto;
}

/* .hero-stat-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--momo-magenta);
  margin-right: 4px;
} */

.hero-stat-num span {
  font-size: 16px;
  font-weight: 500;
}

.hero-stat-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-secondary-big);
  color: var(--text-gray);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
}

.device-img-placeholder {
  background: var(--bg-light);
  border-radius: 4px;
  border: 1px solid var(--border);
  /* height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  overflow: hidden;
}

.device-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.device-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  font-family: 'Noto Sans JP', sans-serif;
}

.device-spec-row span:last-child {
  font-size: var(--font-secondary-big);
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Section 2: Summary / Urgency ── */
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.urgency-grid.with-arrows {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.ba-card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--border);
  margin-bottom: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.ba-card.after {
  background: var(--white);
  border: 1px solid var(--momo-magenta);
}

@media (min-width: 769px) {
  .urgency-grid.with-arrows .ba-card:first-child {
    margin-right: 0;
    margin-left: auto;
  }

  .urgency-grid.with-arrows .ba-card.after {
    margin-left: 0;
    margin-right: auto;
  }
}

.ba-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.ba-card.after .ba-label {
  color: var(--momo-magenta);
}

.ba-main {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.ba-card.after .ba-main {
  color: var(--text-dark);
  font-weight: 800;
}

.ba-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
}

.urgency-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--momo-magenta);
  color: var(--white);
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: var(--font-secondary-middle);
  margin-top: 32px;
}

.urgency-badge svg {
  width: 18px;
  height: 18px;
}

/* ── Section 3: Problem ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 3px solid var(--momo-magenta);
}

.problem-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--font-primary-big);
  line-height: 1;
  background: var(--momo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.problem-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Section 4: Solution ── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.solution-img-placeholder {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--image-border-radius-s);
  /* height: 320px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  overflow: hidden;
  margin: 24px 0;
}

.solution-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}



.solution-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.solution-point-text svg {
  transform: rotate(90deg);
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: var(--text-dark);
}

.solution-point-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--font-primary-big);
  line-height: 1;
  background: var(--momo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 44px;
}

.solution-point-text h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.solution-point-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

.solution-point-problem {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: var(--font-secondary-middle);
  line-height: 1;
  background: var(--text-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

/* ── Dashboard ── */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: center;
}

.dash-img-placeholder {
  /* background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  overflow: hidden; */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  overflow: hidden;
}

/* ── Vital Palette — Page-Specific Styles ── */

/* ── Urgency Text (Vital only) ── */
.urgency-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ── Dashboard Collage Layout ── */
/* ── Collage Layout Stack ── */
.dash-img-placeholder.collage-layout {
  display: block;
  position: relative;
  height: 420px;
  background: transparent;
  border: none;
  overflow: visible;
}

.dash-img-placeholder.collage-layout img {
  position: absolute;
  width: 75%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: var(--bg-light);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-fit: auto;
}

.dash-img-placeholder.collage-layout img:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(0.9);
}

.dash-img-placeholder.collage-layout img:nth-child(2) {
  top: 15%;
  left: 12.5%;
  z-index: 2;
  transform: scale(0.95);
}

.dash-img-placeholder.collage-layout img:nth-child(3) {
  top: 30%;
  left: 25%;
  z-index: 3;
}

.dash-img-placeholder.collage-layout img:hover {
  transform: translateY(-10px) scale(1) !important;
  z-index: 10;
}

@media (max-width: 768px) {
  .dash-img-placeholder.collage-layout {
    height: 300px;
    margin-bottom: 24px;
  }
}


.dash-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dash-point {
  display: flex;
  gap: 16px;
}

.dash-check {
  color: var(--momo-gold);
  font-weight: 700;
  font-size: var(--font-primary-middle);
}

.dash-check svg {
  width: 22px;
  height: 22px;
  color: var(--momo-gold);
}

.check-yes svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

.check-no svg {
  width: 16px;
  height: 16px;
  vertical-align: text-top;
}

.check-partial svg {
  width: 15px;
  height: 15px;
  vertical-align: text-top;
}

.r7-note svg {
  width: 24px;
  height: 24px;
  vertical-align: sub;
  margin-right: 4px;
  color: var(--momo-gold);
}

.dash-point-text h3 {
  color: var(--white);
  font-size: var(--font-primary-middle);
  margin-bottom: 8px;
}

.dash-point-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-secondary-big);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Section 5: Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 16px 28px 32px;
  align-items: center;
  justify-content: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  /* background: var(--bg-light); */
  /* border: 1px solid var(--border); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* margin-bottom: 16px; */
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--momo-magenta);
}

.feature-card h3 {
  font-size: var(--font-primary-small);
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.7;
}



/* ── Section 6: ROI ── */
.cost-ba {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cost-card {
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--white);
  min-width: 250px;
}

.cost-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.cost-main {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
}

.cost-arrow {
  font-size: 32px;
  color: var(--momo-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-box {
  background: var(--momo-navy);
  color: var(--white);
  padding: 36px 40px;
  margin-top: 8px;
  border-radius: 4px;
}

.calc-box h3 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-box h3 svg {
  color: var(--momo-gold);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-secondary-big);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.calc-row.result {
  color: var(--momo-gold);
  font-weight: 700;
  font-size: var(--font-secondary-big);
  padding-top: 20px;
  border-bottom: none;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

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

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
  gap: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--momo-magenta);
  transition: opacity 0.25s, transform 0.25s;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  display: none;
  padding: 0 0 22px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── Contact Form ── */
.form-card {
  background: var(--white);
  padding: 60px;
  padding-top: 32px;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  max-width: 800px;
  margin: 0 auto;
}

.form-card button {
  background: var(--momo-gradient);
}

/* ── Footer ── */
footer {
  background: var(--momo-navy);
  padding: 60px 0;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  font-weight: 700;
  font-size: 18px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-group {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .urgency-grid,
  .urgency-grid.with-arrows {
    grid-template-columns: 1fr;
  }

  .cost-ba {
    flex-direction: column;
  }

  .cost-arrow {
    transform: rotate(90deg);
  }

  .problem-grid,
  .features-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  /* max-width: 80px; */
}

.comparison-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-axis {
  width: 25%;
}

td {
  border-right: 1px solid var(--border);
}

.comparison-table th:nth-child(2) {
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  background: var(--momo-gradient);
  border-radius: 0;
}

.comparison-table td:nth-child(2) {
  background: rgba(216, 27, 96, 0.05);
  border-left: 1px solid rgba(216, 27, 96, 0.2);

}

.comparison-table th:nth-child(2) .check-yes,
.comparison-table td:nth-child(2) .check-yes {
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--bg-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-yes,
.check-no,
.check-partial {
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.check-yes {
  color: var(--momo-magenta);
  background: rgba(216, 27, 96, 0.1);
}

.check-no {
  color: var(--text-gray);
  background: rgba(0, 0, 0, 0.05);
}

.check-partial {
  color: #f0b013;
  background: rgba(251, 192, 45, 0.1);
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--momo-magenta);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  margin-top: 6px;
  color: var(--text-dark);
}

.step-card p {
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Flow Steps ── */
.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 4vw;
  right: 4vw;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.flow-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.flow-step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--momo-magenta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.flow-step-name {
  background-color: transparent;
  font-weight: 700;
  font-size: var(--font-secondary-big);
}

.flow-step-time {
  font-size: var(--font-secondary-small);
  color: var(--momo-magenta);
  margin-top: 4px;
}





/* ── Pricing ── */
.pricing-wrap {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-key {
  font-weight: 500;
}

.pricing-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--momo-navy);
}

.pricing-unit {
  font-size: 12px;
  color: var(--text-gray);
  margin-left: 4px;
}

.campaign-note {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--momo-gold);
}

@media (max-width: 768px) {
  .hero-stat-label {
    text-align: left;
  }

  .steps-grid,
  .flow-steps {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 24px;
  }
}

/* ── Added missing styles for Vitalpalette & Contact Form ── */
.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 27, 96, 0.1);
  color: var(--momo-magenta);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.early-detail {
  font-size: var(--font-secondary-middle);
  color: var(--text-dark);
  line-height: 1.6;
}

.pricing-note {
  font-size: var(--font-secondary-middle);
  color: var(--text-gray);
  margin-top: 8px;
  /* text-align: center; */
}

.r7-note {
  background: var(--bg-light);
  border-left: 4px solid var(--momo-gold);
  padding: 24px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
}

.r7-note strong {
  margin-bottom: 8px;
  display: block;
}

.flow-note {
  text-align: center;
  font-size: var(--font-secondary-small);
  color: var(--text-gray);
  margin-top: 40px;
}

/* ── Contact Form Classes ── */
.form-header {
  color: #212121;
  text-align: center;
  margin-bottom: 32px;
}

.form-header p {
  font-size: 14px;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}



.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 12px;
  background: #f9f9f9;
  border: 2px solid var(--border);
}

.form-input:focus {

  outline: none;

  border-bottom: 2px solid var(--momo-coral);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  /* --- Responsive Layout Fixes --- */

  /* Reduce excessive padding */
  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  /* Convert grids/flex rows into single vertical columns */
  .hero-inner,
  .urgency-grid,
  .urgency-grid.with-arrows,
  .problem-grid,
  .solution-grid,
  .dash-grid,
  .features-grid,
  .steps-grid,
  .form-row,
  .cost-ba {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px;
    align-items: center;
  }

  .pricing-rows {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px;
    align-items: stretch;
  }

  .flow-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px;
    align-items: left;
    margin-left: 5em;
  }

  .form-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px;
  }

  /* Make hero stats layout appropriately */
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  /* Allow comparison table to vertically scroll without breaking out of screen */
  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  /* Rotate arrows connecting steps to point DOWN instead of RIGHT */
  .cost-arrow {
    display: flex;
    justify-content: center;
    margin: 16px auto;
  }

  /* Adjust typography for smaller screens */
  h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 20px;
  }

  /* Fix absolute positioning overlaps of images or mockups */
  .hero-device-card,
  .solution-img-placeholder,
  .dash-img-placeholder {
    margin-top: 24px;
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .comparison-good-highlight {
    margin-bottom: 40px;
    margin-top: 12px;
    /* Keep vertical gap 2 larger: 12 (gap) + 12 (margin) = 24 */
  }

  /* Change timeline connecting line to vertical on mobile */
  .flow-steps::before {
    display: block;
    top: 14px;
    bottom: 40px;
    /* leaves bit of margin at bottom */
    left: 2em;
    width: 2px;
    height: auto;
    right: auto;
    transform: translateX(-50%);
  }

  /* Add backgrounds so the vertical line doesn't strike through text */
  .flow-step-name,
  .flow-step-time:not(:empty) {
    display: inline-block;
    background: transparent;
    position: relative;
    z-index: 2;
    padding: 2px 12px;
  }
}

/* ── Form Enhancements ── */
.hp-field {
  display: none !important;
}

.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  border: 1px solid #c8e6c9;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}