/* ===== VARIABLES ===== */
:root {
  --primary: #2B5A45;
  --primary-dark: #1E4231;
  --primary-light: #3D7A60;
  --line-green: #06C755;
  --bg-gray: #F5F6F4;
  --bg-green: #EEF5F1;
  --text: #1C1C1C;
  --text-sub: #5A5A5A;
  --border: #DDE5DF;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

.section { padding: 80px 0; }
.section-gray { background: var(--bg-gray); }

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-desc {
  text-align: center;
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--bg-green); }

.btn-large { padding: 18px 40px; font-size: 17px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--line-green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-line:hover { opacity: 0.85; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
#header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--primary);
}
.brand-sub {
  font-size: 10px;
  color: var(--text-sub);
  line-height: 1.4;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li a {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--primary); background: var(--bg-green); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  overflow: hidden;
}

.hero-content { flex: 1; min-width: 0; }

.hero-eyebrow {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-desc {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 58%;
  min-width: 0;
  margin-right: -24px;
}

/* ===== DASHBOARD MOCKUP (Hero) ===== */
.dashboard-mockup {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 16px;
  font-size: 11px;
}

.dm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dm-title { font-weight: 700; font-size: 11px; color: var(--text); }
.dm-date { font-size: 10px; color: #999; }

.dm-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dm-metric {
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.dm-metric-label { font-size: 9px; color: #777; line-height: 1.4; margin-bottom: 6px; }
.dm-metric-value {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.dm-metric-value.orange { color: #E88A00; }
.dm-metric-value.green { color: #2B8A5A; }
.dm-metric-value.red { color: #D94040; }

.dm-charts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.dm-chart-block { background: #FAFAFA; border: 1px solid var(--border); border-radius: 8px; padding: 10px; }
.dm-chart-title { font-size: 9px; color: #666; font-weight: 600; margin-bottom: 8px; }

.dm-donut-wrap { display: flex; align-items: center; gap: 8px; }
.dm-donut {
  width: 60px; height: 60px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.dm-donut-center {
  position: absolute;
  inset: 12px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dm-donut-center strong { font-size: 13px; font-weight: 900; line-height: 1; }
.dm-donut-center small { font-size: 7px; color: #888; }

.dm-legend { font-size: 8px; color: #555; display: flex; flex-direction: column; gap: 3px; }
.dm-legend li { display: flex; align-items: center; gap: 4px; }
.leg { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.leg.blue { background: #4A90D9; }
.leg.green { background: #4CAF50; }
.leg.gray { background: #9E9E9E; }
.leg.red { background: #E74C3C; }
.leg.orange-l { background: #F39C12; }

.dm-bar-chart { padding-top: 4px; }
.dm-bars { display: flex; align-items: flex-end; gap: 8px; height: 50px; }
.dm-bar-col { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.dm-bar-val { font-size: 9px; font-weight: 700; }
.dm-bar { width: 100%; border-radius: 3px 3px 0 0; min-height: 4px; }
.dm-bar-name { font-size: 8px; color: #777; text-align: center; margin-top: 2px; }

/* ===== BROWSER FRAME (hero & slides) ===== */
.browser-frame {
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #D8D8D8;
  background: var(--white);
}
.browser-bar {
  background: #F0F0F0;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #D8D8D8;
}
.bdot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bdot.red    { background: #FF5F57; }
.bdot.yellow { background: #FFBD2E; }
.bdot.green  { background: #28C840; }
.burl {
  font-size: 11px;
  color: #888;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-frame img {
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
  object-position: top left;
}

/* ===== HERO IMAGE FRAME ===== */
.hero-img-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  background: var(--white);
}
.hero-img-frame img {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: top left;
}

/* ===== SLIDE IMAGE FRAME ===== */
.slide-img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: var(--white);
}
.slide-img-frame img {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
  object-position: top left;
}
.slide-img-frame.tasks img {
  object-position: top center;
  max-height: 460px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  background: var(--bg-green);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-item div { display: flex; flex-direction: column; }
.badge-item strong { font-size: 13px; font-weight: 700; }
.badge-item span { font-size: 11px; color: var(--text-sub); }

/* ===== PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pain-icon {
  width: 56px; height: 56px;
  background: var(--bg-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pain-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.5; }
.pain-card p { font-size: 12px; color: var(--text-sub); line-height: 1.6; }

/* ===== FEATURE SLIDER ===== */
.feature-slider-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  min-height: 480px;
}

.feature-nav-list {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
}
.feature-nav-item:hover:not(.disabled) { background: var(--bg-green); }
.feature-nav-item.active {
  background: var(--bg-green);
  border-left-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}
.feature-nav-item.disabled { opacity: 0.4; cursor: default; }
.fn-num { font-size: 11px; font-weight: 900; color: var(--primary); opacity: 0.7; min-width: 20px; }
.fn-label { font-size: 13px; }
.fn-label small { display: block; font-size: 11px; font-weight: 400; }

.feature-slides-area {
  flex: 1;
  min-width: 0;
  position: relative;
}

.feature-slide { display: none; }
.feature-slide.active { display: block; }

.slide-arrow {
  position: absolute;
  top: 160px;
  z-index: 10;
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: background 0.15s;
}
.slide-arrow:hover { background: var(--bg-green); }
.slide-arrow.prev { left: -18px; }
.slide-arrow.next { right: -18px; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
}
.dot.active { background: var(--primary); transform: scale(1.2); }

.demo-note { text-align: center; font-size: 11px; color: #AAA; margin-top: 20px; }

/* ===== NOTION UI MOCKUP ===== */
.notion-ui {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.notion-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: #FAFAFA;
}
.notion-icon { font-size: 18px; }
.notion-title { font-size: 14px; font-weight: 700; }

.notion-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.ntab {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-sub);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.ntab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.ntab:hover:not(.active) { color: var(--text); }

/* Notion Table */
.notion-table-wrap { overflow-x: auto; }
.notion-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.notion-table th {
  background: #F7F7F5;
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  color: #888;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.notion-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #F0F0EE;
  white-space: nowrap;
  font-size: 12px;
}
.notion-table tr:last-child td { border-bottom: none; }
.notion-table tr:hover td { background: #FAFAF8; }

.badge-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.badge-tag.food { background: #FFF0D6; color: #B86C00; }
.badge-tag.const { background: #D6E8FF; color: #1A5BAA; }
.badge-tag.agri { background: #D6F5D6; color: #1A7A1A; }
.badge-tag.svc { background: #F0D6FF; color: #7A1AAA; }
.badge-tag.retail { background: #FFE5D6; color: #AA4A1A; }
.badge-tag.logi { background: #D6F0FF; color: #1A6A99; }
.badge-tag.med { background: #FFD6D6; color: #AA1A1A; }
.badge-tag.mfg { background: #E8E8E8; color: #555; }

/* Calendar */
.calendar-wrap { padding: 12px 16px; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month { font-size: 14px; font-weight: 700; }
.cal-nav { display: flex; gap: 8px; font-size: 12px; color: var(--text-sub); }
.cal-nav span { cursor: pointer; padding: 2px 6px; border-radius: 4px; }
.cal-nav span:hover { background: var(--bg-gray); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  font-size: 10px;
  font-weight: 600;
  color: #999;
  text-align: center;
  padding: 4px 0;
}
.cal-day {
  min-height: 64px;
  padding: 4px;
  font-size: 11px;
  border: 1px solid #F0F0EE;
  border-radius: 4px;
  position: relative;
  vertical-align: top;
}
.cal-day.empty { border-color: transparent; background: transparent; }
.cal-day.today { background: #EEF5F1; border-color: var(--primary); }
.cal-num { font-size: 11px; font-weight: 600; display: block; margin-bottom: 3px; }
.cal-day.today .cal-num {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}

.cal-task {
  font-size: 9px;
  padding: 2px 4px;
  border-radius: 3px;
  margin-bottom: 2px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-task.green { background: #D6F5D6; color: #1A7A1A; }
.cal-task.blue { background: #D6E8FF; color: #1A5BAA; }
.cal-task.orange { background: #FFF0D6; color: #B86C00; }

/* Dashboard (slide 2) */
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.dash-metric {
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.dash-mlabel { font-size: 9px; color: #777; line-height: 1.4; margin-bottom: 4px; }
.dash-mval { font-size: 30px; font-weight: 900; line-height: 1; }
.dash-mval.orange-c { color: #E88A00; }
.dash-mval.green-c { color: #2B8A5A; }
.dash-mval.red-c { color: #D94040; }

.dash-charts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 12px 16px; }
.dash-chart-block { background: #FAFAFA; border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.dash-chart-label { font-size: 10px; color: #666; font-weight: 600; margin-bottom: 10px; }

.dash-donut-row { display: flex; align-items: center; gap: 10px; }
.dash-donut {
  width: 70px; height: 70px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.dash-donut-inner {
  position: absolute;
  inset: 14px;
  background: white;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.dash-donut-inner strong { font-size: 15px; font-weight: 900; line-height: 1; }
.dash-donut-inner small { font-size: 8px; color: #888; }

.dash-legend { font-size: 9px; color: #555; display: flex; flex-direction: column; gap: 4px; }
.dash-legend li { display: flex; align-items: center; gap: 5px; }
.dleg { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.dleg.blue { background: #4A90D9; }
.dleg.green { background: #4CAF50; }
.dleg.gray { background: #9E9E9E; }
.dleg.red { background: #E74C3C; }
.dleg.orng { background: #F39C12; }

.dash-bar-chart { padding-top: 4px; height: 80px; display: flex; flex-direction: column; justify-content: flex-end; }
.dash-bars { display: flex; align-items: flex-end; gap: 10px; height: 60px; }
.dash-bar-col { display: flex; flex-direction: column; align-items: center; flex: 1; }
.dash-bar-top { font-size: 10px; font-weight: 700; margin-bottom: 2px; }
.dash-bar-fill { width: 100%; border-radius: 3px 3px 0 0; min-height: 4px; }
.dash-bar-name { font-size: 9px; color: #777; margin-top: 3px; white-space: nowrap; }

/* Slide point section */
.slide-point {
  background: var(--bg-green);
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.point-lead {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  grid-column: 1 / -1;
}
.point-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.point-checks li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.point-checks li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.point-box {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  min-width: 200px;
  max-width: 240px;
  box-shadow: var(--shadow-sm);
}
.point-box strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.point-box p { font-size: 12px; color: var(--text-sub); line-height: 1.7; }

/* ===== FLOW ===== */
.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 180px;
  position: relative;
  padding: 0 8px;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 14px;
  font-size: 18px;
  color: var(--primary);
  opacity: 0.35;
}
.flow-num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.flow-content h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.flow-content p { font-size: 12px; color: var(--text-sub); line-height: 1.6; }

/* ===== REASONS ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.reason-icon {
  width: 64px; height: 64px;
  background: var(--bg-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.reason-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.reason-card p { font-size: 13px; color: var(--text-sub); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pricing-table-wrap { flex: 1; min-width: 300px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pricing-table th, .pricing-table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricing-table th { background: #F7F7F5; font-weight: 700; font-size: 13px; }
.pricing-table td:first-child { text-align: left; color: var(--text-sub); }
.pricing-table tr:last-child td { border-bottom: none; }
.pt-feature { text-align: left !important; }
.pt-plan { width: 100px; }
.pt-standard { background: var(--bg-green) !important; color: var(--primary); }

.pricing-info {
  flex: 0 0 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.pricing-block { margin-bottom: 20px; }
.price-label { font-size: 12px; color: var(--text-sub); margin-bottom: 4px; font-weight: 600; }
.price-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
}
.price-value span { font-size: 16px; font-weight: 500; }
.price-note { font-size: 11px; color: #999; }
.price-note-monitor { color: var(--primary); font-weight: 600; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
  color: var(--text);
}
.faq-q:hover { background: var(--bg-gray); }
.faq-q span { flex: 1; }
.faq-icon { flex-shrink: 0; transition: transform 0.2s; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

.faq-note { text-align: center; font-size: 13px; color: var(--text-sub); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { font-size: 28px; font-weight: 900; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 32px; line-height: 1.8; }
.cta-section .btn-primary { background: var(--line-green); font-size: 16px; padding: 16px 36px; }
.cta-section .btn-primary:hover { background: #05a046; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 28px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-name { color: white; font-size: 15px; }
.footer-sub { font-size: 11px; }
.footer-copy { font-size: 11px; }

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #hero { flex-direction: column; min-height: auto; padding-top: 88px; }
  .hero-visual { max-width: 100%; }
  .feature-slider-wrap { flex-direction: column; }
  .feature-nav-list { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .feature-nav-item { flex: 1; min-width: 80px; justify-content: center; text-align: center; border-left: none; border-bottom: 3px solid transparent; }
  .feature-nav-item.active { border-left-color: transparent; border-bottom-color: var(--primary); }
  .slide-arrow { display: none; }
  .dm-charts { grid-template-columns: 1fr; }
  .dash-charts { grid-template-columns: 1fr; }
  .pricing-wrap { flex-direction: column; }
  .pricing-info { flex: 1 1 auto; width: 100%; }
  .flow-steps { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .flow-step { flex: 0 0 140px; max-width: 140px; }
  .flow-step::after { display: none; }
  .trust-badges { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .slide-point { grid-template-columns: 1fr; }
  .point-box { max-width: 100%; }
  .dm-metrics { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section-title { font-size: 24px; }
  .hero-content h1 { font-size: 36px; }
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
  .brand-sub { display: none; }
  .btn-line { font-size: 12px; padding: 8px 12px; }
  .trust-badges { gap: 20px; flex-direction: column; align-items: flex-start; padding-left: 32px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .feature-nav-item { font-size: 12px; }
  .fn-label { word-break: keep-all; }
}
