/* ==========================================================================
   SEOMON — Front Page Styles
   Dark theme + Cyan accent + Pixel aesthetic
   ========================================================================== */

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --bg: #0A0A0A;
  --bg-alt: #0F0F1A;
  --bg-card: #111122;
  --bg-card-alt: #0D0D1E;
  --primary: #3B82F6;
  --cyan: #00FFFF;
  --cyan-dim: rgba(0, 255, 255, 0.15);
  --cyan-glow: rgba(0, 255, 255, 0.4);
  --success: #22C55E;
  --warning: #FBBF24;
  --pink: #F472B6;
  --text: #E2E8F0;
  --text-dim: #94A3B8;
  --text-muted: #475569;
  --border: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(0, 255, 255, 0.2);
  --font-pixel: 'Press Start 2P', monospace;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans: 'Noto Sans JP', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ─── Base Reset ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── Three.js Canvas ───────────────────────────────────────────────────── */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── Progress Bar ──────────────────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--primary));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── Site Header ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  text-decoration: none;
}

.logo {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-glow);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu .nav-cta {
  background: var(--cyan);
  color: #000 !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
}

.nav-menu .nav-cta:hover {
  background: #00DDDD;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.mobile-nav-item {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav-item:hover {
  color: var(--cyan);
}

/* ─── Section Base ──────────────────────────────────────────────────────── */
.section-reveal {
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  font-family: var(--font-pixel);
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: 0 0 8px var(--cyan-glow);
}

.section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── GSAP Reveal Animations ────────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-card {
  opacity: 0;
  will-change: opacity, transform;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text);
}

.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 8px;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 28px;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-primary:hover {
  background: #00DDDD;
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-cyan);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}

.btn-lg {
  font-size: 16px;
  padding: 18px 40px;
}

/* Terminal */
.terminal {
  background: rgba(5, 5, 15, 0.9);
  border: 1px solid var(--border-cyan);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.terminal-bar {
  background: rgba(0, 255, 255, 0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-dot.red {
  background: #FF5F57;
}

.t-dot.yellow {
  background: #FFBD2E;
}

.t-dot.green {
  background: #28CA41;
}

.t-title {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--text-muted);
  margin-left: 4px;
}

.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 2;
}

.t-prompt {
  color: var(--cyan);
  margin-right: 6px;
}

.t-cmd {
  color: var(--text);
}

.t-cursor {
  color: var(--cyan);
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  49% {
    opacity: 1
  }

  50%,
  100% {
    opacity: 0
  }
}

.t-info {
  color: var(--text-muted);
  font-size: 11px;
}

.t-log {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: opacity 0.4s ease;
}

.t-log-tag {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.1);
  padding: 3px 6px;
  flex-shrink: 0;
  margin-top: 4px;
}

.t-log-tag.green {
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
}

.t-log-text {
  color: var(--text-dim);
}

.t-bar-wrap {
  margin-top: 12px;
}

.t-bar-label {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.t-bar {
  background: rgba(255, 255, 255, 0.08);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.t-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--primary));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: width 2s ease;
}

.t-status {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--cyan);
  margin-top: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-pixel);
  font-size: 7px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-hint-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── PROBLEMS ──────────────────────────────────────────────────────────── */
.problems-section {
  background: transparent;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.problem-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}

.problem-num {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}

.problem-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.problem-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── VISION ────────────────────────────────────────────────────────────── */
.vision-section {
  background: transparent;
}

.vision-box {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.9;
  color: var(--text-dim);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05);
}

.vision-box strong {
  color: var(--text);
}

.vision-sub-title {
  font-weight: 700;
  color: var(--cyan);
  font-size: 16px;
  margin: 28px 0 10px;
}

.vision-sub-text {
  font-size: 14px;
}

/* ─── CASE STUDY ────────────────────────────────────────────────────────── */
.casestudy-section {
  background: transparent;
}

.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition);
}

.metric-card:hover {
  transform: translateY(-4px);
}

.metric-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.metric-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin: 4px 0;
}

.metric-unit {
  font-size: 16px;
  color: var(--text-muted);
}

.metric-num.blue {
  color: #60A5FA;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.metric-num.green {
  color: var(--success);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.metric-num.pink {
  color: var(--pink);
  text-shadow: 0 0 20px rgba(244, 114, 182, 0.4);
}

.metric-num.yellow {
  color: var(--warning);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.metric-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 8px;
}

.casestudy-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 32px;
}

.casestudy-note h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.casestudy-note p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

.casestudy-note strong {
  color: var(--text);
}

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

.text-yellow {
  color: var(--warning);
}

/* ─── FEATURES ──────────────────────────────────────────────────────────── */
.features-section {
  background: transparent;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}

.feature-card.highlight {
  border-color: var(--border-cyan);
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.04), var(--bg-card));
}

.feature-num {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

.feature-num.std {
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyan);
  opacity: 1;
  padding: 4px 8px;
  border-radius: 4px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── FLOW ──────────────────────────────────────────────────────────────── */
.flow-section {
  background: transparent;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--cyan));
  opacity: 0.3;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  margin: 0 8px;
  transition: transform var(--transition);
}

.flow-step:hover {
  transform: translateY(-4px);
}

.flow-circle {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--border-cyan);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.15);
}

.flow-step-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.flow-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}

.flow-auto-tag {
  font-family: var(--font-pixel);
  font-size: 7px;
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyan);
  padding: 4px 8px;
  border-radius: 4px;
}

.flow-auto-tag.done {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

/* ─── COMPARISON ────────────────────────────────────────────────────────── */
.comparison-section {
  background: transparent;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  color: var(--text-muted);
}

.compare-table .highlight-cell {
  background: rgba(0, 255, 255, 0.05);
  color: var(--cyan);
  font-weight: 600;
  border-left: 1px solid var(--border-cyan);
  border-right: 1px solid var(--border-cyan);
}

.compare-table thead .highlight-cell {
  border-top: 1px solid var(--border-cyan);
  color: var(--text);
}

.compare-table small {
  font-size: 10px;
  color: var(--text-muted);
}

/* ─── PRICING ───────────────────────────────────────────────────────────── */
.pricing-section {
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-cyan);
}

.pricing-card.popular {
  border-color: var(--cyan);
  background: linear-gradient(160deg, rgba(0, 255, 255, 0.06), var(--bg-card));
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-pixel);
  font-size: 7px;
  background: var(--cyan);
  color: #000;
  padding: 5px 12px;
  white-space: nowrap;
  border-radius: 4px;
}

.plan-name {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.plan-name.popular-name {
  color: var(--success);
}

.plan-name-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0;
}

.plan-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-price-unit {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}

.plan-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.plan-btn.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-cyan);
}

.plan-btn.outline:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
  border-color: var(--cyan);
}

.plan-btn.primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 16px var(--cyan-glow);
}

.plan-btn.primary:hover {
  background: #00DDDD;
}

.enterprise-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.enterprise-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.enterprise-cta {
  flex-shrink: 0;
  text-align: right;
}

.plan-compare-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 640px;
}

.plan-compare-table th,
.plan-compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.plan-compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  color: var(--text-dim);
  font-family: var(--font-pixel);
  font-size: 8px;
}

.plan-compare-table td:first-child {
  text-align: left;
  color: var(--text-dim);
}

.plan-compare-table .c-std {
  background: rgba(0, 255, 255, 0.04);
  color: var(--cyan);
}

.c-check {
  color: var(--success);
  font-size: 14px;
}

.c-cross {
  color: var(--text-muted);
  font-size: 14px;
}

.pricing-notes {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.pricing-notes ul {
  list-style: none;
}

.pricing-notes li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.pricing-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.pricing-notes li:not(:first-child) {}

.campaign-banner {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05);
}

.campaign-badge-tag {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.campaign-banner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.campaign-banner p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}

.campaign-banner strong {
  color: var(--text);
}

/* ─── EXPERT ────────────────────────────────────────────────────────────── */
.expert-section {
  background: transparent;
}

.expert-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.expert-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.expert-box p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 24px;
}

.expert-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.expert-list li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.expert-list li::before {
  content: '▸';
  color: var(--cyan);
  flex-shrink: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-section {
  background: transparent;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

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

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  font-family: var(--font-sans);
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  background: var(--bg);
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 20px 24px;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────── */
.about-section {
  background: transparent;
}

.about-profile {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 56px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 2px dashed var(--border-cyan);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-photo-label {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

.about-role {
  font-family: var(--font-pixel);
  font-size: 8px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.about-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.about-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.skill-tag {
  background: rgba(0, 255, 255, 0.07);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}

.skill-tag:hover {
  background: rgba(0, 255, 255, 0.15);
}

/* Career Timeline */
.career-timeline {
  max-width: 800px;
  margin: 0 auto 64px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-cyan);
  transition: all var(--transition);
}

.timeline-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--border-cyan);
}

.timeline-phase {
  font-family: var(--font-pixel);
  font-size: 7px;
  color: var(--cyan);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}

.timeline-phase.current-phase {
  color: var(--success);
  opacity: 1;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Brand Story */
.brand-story {
  max-width: 800px;
  margin: 0 auto;
}

.brand-story-inner {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), var(--bg-card));
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05);
}

.brand-owl {
  flex-shrink: 0;
}

.brand-owl-icon {
  font-size: 48px;
  display: block;
}

.brand-story-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.brand-story-text p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

/* ─── CONTACT CTA ───────────────────────────────────────────────────────── */
.contact-cta-section {
  background: transparent;
}

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

/* ─── CONTACT MODAL ─────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-inner {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.required {
  font-size: 10px;
  color: var(--pink);
  background: rgba(244, 114, 182, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

.optional {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--border-cyan);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.08);
}

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

.form-feedback {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-feedback.error {
  display: block;
  background: rgba(244, 114, 182, 0.1);
  color: var(--pink);
  border: 1px solid rgba(244, 114, 182, 0.2);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 20px var(--cyan-glow);
  font-family: var(--font-sans);
}

.form-submit:hover {
  background: #00DDDD;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 15, 0.8);
  padding: 48px 0 32px;
}

.footer-inner {}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 12px var(--cyan-glow);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ─── Page styles (privacy / tokusho) ──────────────────────────────────── */
.page-main {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.prose h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.prose p,
.prose li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
}

.prose ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0;
}

.tokusho-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tokusho-table th,
.tokusho-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}

.tokusho-table th {
  width: 200px;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.tokusho-table td {
  color: var(--text-dim);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .flow-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 72px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .feature-card.highlight {
    grid-column: auto;
  }

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

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

  .flow-steps {
    grid-template-columns: 1fr;
  }

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

  .enterprise-row {
    flex-direction: column;
  }

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

  .brand-story-inner {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-nav ul {
    justify-content: flex-start;
  }

  .modal-inner {
    padding: 28px 20px;
  }

  .tokusho-table th {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    text-align: center;
  }

  .section-title {
    font-size: 20px;
  }
}

/* ==========================================================================
   Side Panel — Section TOC + Back to Top
   ========================================================================== */

/* ─── Toggle tab (right-edge bookmark style) ────────────────── */
.side-toc-toggle {
  position: fixed;
  right: 0;
  bottom: 180px;
  z-index: 92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 26px;
  padding: 16px 0;
  background: rgba(2, 6, 18, 0.92);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--cyan);
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: -3px 0 20px rgba(0, 255, 255, 0.12);
  transition: width 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
              opacity 0.3s ease, transform 0.3s ease;
}

.side-toc-toggle:hover {
  width: 32px;
  background: rgba(0, 255, 255, 0.07);
  box-shadow: -5px 0 28px rgba(0, 255, 255, 0.22);
}

/* Hidden state (same condition as header) */
.side-toc-toggle.is-hidden {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}

/* Vertical text: INFO */
.side-toc-toggle-icon {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.22em;
  line-height: 1;
}

.side-toc-toggle-icon::before { content: 'INFO'; }

/* Label hidden by default, not needed */
.side-toc-toggle-label { display: none; }

/* Open state: CLOSE */
.side-toc-toggle.is-open .side-toc-toggle-icon::before {
  content: 'CLOSE';
  letter-spacing: 0.18em;
}

/* ─── Overlay ───────────────────────────────────────────────── */
.side-toc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 89;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.side-toc-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Drawer panel (all screen sizes) ──────────────────────── */
.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 220px;
  z-index: 91;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(4, 6, 18, 0.97);
  border-left: 1px solid var(--border-cyan);
  backdrop-filter: blur(20px);
  padding: 80px 0 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-panel.open {
  transform: translateX(0);
}

/* ─── Section Nav inside drawer ─────────────────────────────── */
.side-toc {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

/* Section label header */
.side-toc::before {
  content: '// CONTENTS';
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  padding: 0 20px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.side-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background var(--transition);
}

.side-dot:hover {
  background: rgba(0, 255, 255, 0.06);
}

.side-dot-mark {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  border: 1px solid rgba(0, 255, 255, 0.25);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.side-dot-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}

.side-dot.is-active .side-dot-mark {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
  transform: scale(1.3);
}

.side-dot.is-active .side-dot-label {
  color: var(--cyan);
}

.side-dot:hover .side-dot-label {
  color: var(--text);
}

/* ─── Bottom zone ───────────────────────────────────────────── */
.side-panel-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-top: 1px solid var(--border);
}

/* ─── Back to Top (in drawer) ───────────────────────────────── */
.back-to-top {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  opacity: 0;
  transition: opacity 0.3s ease, background var(--transition), box-shadow var(--transition);
  pointer-events: none;
}

.back-to-top::after {
  content: 'PAGE TOP';
  font-size: 9px;
  letter-spacing: 0.1em;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* reCAPTCHA有効時: .recaptcha-space { height: 60px; } に変更 */
.recaptcha-space {
  width: 100%;
  height: 0;
}

/* 下層ページのページトップ（footer.phpから出力） */
body:not(.home) #back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition), box-shadow var(--transition);
  pointer-events: none;
}

body:not(.home) #back-to-top::after {
  display: none;
}

body:not(.home) #back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* overlay always in DOM on LP */
.side-toc-overlay {
  display: block;
}

/* ==========================================================================
   Inner Page Styles (About / Contact)
   ========================================================================== */

/* ─── Page Hero ─────────────────────────────────────────────────────────── */
.page-hero-section {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0;
  background: linear-gradient(135deg, #fff 40%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ─── Contact Page Form ─────────────────────────────────────────────────── */
.contact-page-section {
  padding: 0 0 120px;
  position: relative;
  z-index: 1;
}

.contact-page-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 48px;
}

.contact-page-form .form-group {
  margin-bottom: 24px;
}

.contact-page-form .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-page-form .form-input,
.contact-page-form .form-textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color var(--transition);
}

.contact-page-form .form-input:focus,
.contact-page-form .form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}

.contact-page-form .form-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page-form .form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  margin-top: 8px;
}

.contact-page-form .form-submit:hover {
  opacity: .85;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .page-hero-section {
    padding: 140px 0 60px;
  }

  .contact-page-inner {
    padding: 28px 20px;
  }
}