/* =============================================
   HoikuShift Landing Page - Main Stylesheet
   Color Palette:
   --hs-navy:   #1a2d5a  (primary dark)
   --hs-teal:   #1a9d8b  (accent teal)
   --hs-green:  #d4ede8  (light background)
   --hs-white:  #ffffff
   --hs-gray:   #6b7a90
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --hs-navy:        #1a2d5a;
  --hs-navy-light:  #2a4080;
  --hs-teal:        #1a9d8b;
  --hs-teal-light:  #22b5a1;
  --hs-teal-pale:   #e6f7f5;
  --hs-green-light: #f0f7f5;
  --hs-green-mid:   #d4ede8;
  --hs-white:       #ffffff;
  --hs-gray:        #6b7a90;
  --hs-gray-light:  #f4f6f9;
  --hs-text:        #1e2a3b;
  --hs-text-muted:  #5a6678;
  --hs-border:      #e2e8f0;
  --hs-shadow:      0 4px 24px rgba(26, 45, 90, 0.08);
  --hs-shadow-lg:   0 8px 40px rgba(26, 45, 90, 0.14);
  --hs-radius:      12px;
  --hs-radius-lg:   20px;
  --font-main: 'Noto Sans JP', 'Inter', sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--hs-text);
  background: var(--hs-white);
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; height: auto; }

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

/* ---------- Utility ---------- */
.bg-light-green { background-color: var(--hs-green-light); }

.hs-text-teal  { color: var(--hs-teal); }
.hs-text-navy  { color: var(--hs-navy); }
.hs-text-highlight {
  color: var(--hs-teal);
  position: relative;
  display: inline-block;
}

/* ---------- Button Styles ---------- */
.btn-hs-primary {
  background: var(--hs-teal);
  color: var(--hs-white);
  border: 2px solid var(--hs-teal);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-hs-primary:hover {
  background: var(--hs-teal-light);
  border-color: var(--hs-teal-light);
  color: var(--hs-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 157, 139, 0.35);
}

.btn-hs-outline {
  background: transparent;
  color: var(--hs-teal);
  border: 2px solid var(--hs-teal);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-hs-outline:hover {
  background: var(--hs-teal);
  color: var(--hs-white);
  transform: translateY(-2px);
}

.btn-hs-outline-hero {
  background: rgba(255,255,255,0.12);
  color: var(--hs-white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-hs-outline-hero:hover {
  background: rgba(255,255,255,0.25);
  color: var(--hs-white);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-hs-cta-primary {
  background: var(--hs-white);
  color: var(--hs-navy);
  border: 2px solid var(--hs-white);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-hs-cta-primary:hover {
  background: var(--hs-green-light);
  color: var(--hs-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-hs-cta-outline {
  background: transparent;
  color: var(--hs-white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-hs-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--hs-white);
  color: var(--hs-white);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.hs-navbar {
  background: rgba(26, 45, 90, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  transition: background 0.3s;
}
.hs-navbar.scrolled {
  background: rgba(26, 45, 90, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hs-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--hs-teal);
  border-radius: 8px;
  color: var(--hs-white);
  font-size: 18px;
}
.hs-logo-icon.small {
  width: 30px;
  height: 30px;
  font-size: 14px;
}
.hs-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--hs-white);
  letter-spacing: -0.02em;
}
.hs-logo-text.small {
  font-size: 17px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-nav .nav-link:hover {
  color: var(--hs-white) !important;
  background: rgba(255,255,255,0.1);
}

/* ---------- Sections Common ---------- */
.hs-section {
  padding: 100px 0;
}

.hs-section-label {
  display: inline-block;
  background: var(--hs-teal-pale);
  color: var(--hs-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.hs-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--hs-navy);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.hs-section-sub {
  font-size: 16px;
  color: var(--hs-text-muted);
  line-height: 1.8;
}

/* ---------- Hero Section ---------- */
.hs-hero {
  background: linear-gradient(135deg, var(--hs-navy) 0%, #1e3a6e 50%, #173352 100%);
  position: relative;
  overflow: hidden;
}

.hs-hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--hs-teal);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: var(--hs-teal);
  bottom: 100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: #ffffff;
  top: 200px; left: 30%;
}

.hs-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 157, 139, 0.2);
  border: 1px solid rgba(26, 157, 139, 0.4);
  color: #7de8dc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

.hs-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--hs-white);
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.hs-hero-title .hs-text-highlight {
  color: #7de8dc;
}

.hs-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.85;
}
.hs-hero-sub strong {
  color: var(--hs-white);
}

.hs-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Wave */
.hs-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hs-wave svg { display: block; width: 100%; }

/* ---------- Browser Mockup ---------- */
.hs-mockup-wrapper {
  perspective: 1000px;
}
.hs-mockup-browser {
  background: #1e2a40;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 0.4s;
}
.hs-mockup-browser:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}
.hs-mockup-bar {
  background: #2a3550;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.hs-mockup-url {
  flex: 1;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
  font-family: monospace;
  background: rgba(0,0,0,0.2);
  padding: 3px 10px;
  border-radius: 4px;
}

.hs-mockup-screen {
  padding: 12px;
  background: #141e30;
  min-height: 320px;
}

/* Mock UI elements */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 10px;
  background: #1e2a40;
  border-radius: 8px;
}
.mock-title {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.mock-badge.confirmed {
  background: rgba(26,157,139,0.25);
  color: #7de8dc;
  border: 1px solid rgba(26,157,139,0.3);
}
.mock-actions { display: flex; gap: 6px; }
.mock-btn {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}
.mock-btn.primary {
  background: var(--hs-teal);
  color: white;
  border-color: var(--hs-teal);
}

/* Shift Table Mock */
.mock-shift-table { margin-bottom: 8px; }
.mock-shift-header, .mock-shift-row {
  display: grid;
  grid-template-columns: 100px repeat(8, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.mock-cell {
  padding: 4px 2px;
  text-align: center;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 600;
}
.mock-cell.head {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  font-weight: 500;
}
.mock-cell.head.sat { color: #7ec8ff; }
.mock-cell.head.sun { color: #ff9b9b; }
.mock-cell.name-col {
  text-align: left;
  color: rgba(255,255,255,0.75);
  padding-left: 4px;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.mock-cell.s-early  { background: rgba(34,181,161,0.25); color: #7de8dc; }
.mock-cell.s-day    { background: rgba(100,160,255,0.2); color: #99c2ff; }
.mock-cell.s-late   { background: rgba(200,130,255,0.2); color: #d4a3ff; }
.mock-cell.s-off    { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }
.mock-cell.s-annual { background: rgba(255,200,80,0.2); color: #ffe08a; }
.mock-cell.s-part   { background: rgba(255,160,80,0.2); color: #ffc09f; }
.mock-cell.s-part.alert { background: rgba(255,80,80,0.25); color: #ff9999; }
.mock-cell.s-part.alert i { font-size: 8px; margin-left: 2px; }
.mock-cell.sat { opacity: 0.8; }
.alert-row .name-col { color: #ffc09f; }

.mock-check-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #1e2a40;
  padding: 8px 10px;
  border-radius: 8px;
}
.mock-check-item {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-check-item.ok   { color: #7de8dc; }
.mock-check-item.warn { color: #ffe08a; }
.mock-check-item i    { font-size: 10px; }

/* ---------- Problem Section ---------- */
.hs-problem { background: var(--hs-white); }

.hs-problem-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
}
.hs-problem-card:hover {
  border-color: var(--hs-teal);
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
}
.hs-problem-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #fff3f0;
  color: #e05c3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.hs-problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 10px;
}
.hs-problem-card p {
  font-size: 14px;
  color: var(--hs-text-muted);
  margin: 0;
  line-height: 1.7;
}

.hs-issues-inner {
  background: var(--hs-gray-light);
  border-radius: var(--hs-radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--hs-border);
}
.hs-issues-lead {
  font-size: 16px;
  color: var(--hs-navy);
  font-weight: 600;
}
.hs-issue-item {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--hs-text);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.hs-issues-footer {
  font-size: 14px;
  color: var(--hs-text-muted);
}
.hs-issues-footer strong {
  color: var(--hs-navy);
}

/* ---------- What Can Do Section ---------- */
.hs-whatcando { background: var(--hs-white); }

.hs-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hs-flow-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--hs-radius);
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  position: relative;
}
.hs-flow-item::after {
  content: '';
  position: absolute;
  left: 32px;
  bottom: -2px;
  width: 2px;
  height: 4px;
  background: var(--hs-border);
}
.hs-flow-item:last-child::after { display: none; }

.hs-flow-item:hover {
  background: var(--hs-green-light);
  border-color: var(--hs-teal);
}
.hs-flow-item.active {
  background: var(--hs-teal-pale);
  border-color: var(--hs-teal);
}

.hs-flow-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--hs-teal);
  min-width: 28px;
  opacity: 0.5;
  line-height: 1.5;
  padding-top: 2px;
}
.hs-flow-item.active .hs-flow-num { opacity: 1; }

.hs-flow-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.hs-flow-content p {
  font-size: 13px;
  color: var(--hs-text-muted);
  margin: 0;
  line-height: 1.6;
  display: none;
}
.hs-flow-item.active .hs-flow-content p { display: block; }

.hs-flow-visual {
  background: var(--hs-teal-pale);
  border-radius: var(--hs-radius-lg);
  padding: 32px;
  min-height: 360px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(26,157,139,0.15);
}

.hs-flow-step-display { width: 100%; }

.flow-step-card {
  display: none;
}
.flow-step-card.active { display: block; }

.fsc-icon {
  width: 64px; height: 64px;
  background: var(--hs-teal);
  color: var(--hs-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.flow-step-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--hs-navy);
  margin-bottom: 16px;
}
.flow-step-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}
.flow-step-card ul li {
  font-size: 14px;
  color: var(--hs-text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(26,157,139,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-step-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--hs-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.fsc-tag {
  display: inline-block;
  background: var(--hs-teal);
  color: var(--hs-white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ---------- Features Section ---------- */
.hs-feature-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 28px 24px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.hs-feature-card:hover {
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
  border-color: var(--hs-teal);
}
.hs-feature-card.future {
  border-style: dashed;
  opacity: 0.75;
}
.hs-feature-card.future:hover { opacity: 0.9; }

.hs-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.hs-feature-icon.teal  { background: var(--hs-teal-pale); color: var(--hs-teal); }
.hs-feature-icon.navy  { background: rgba(26,45,90,0.08); color: var(--hs-navy); }
.hs-feature-icon.gray  { background: var(--hs-gray-light); color: var(--hs-gray); }

.hs-feature-phase {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  background: var(--hs-teal-pale);
  color: var(--hs-teal);
  letter-spacing: 0.05em;
}
.hs-feature-phase.future {
  background: var(--hs-gray-light);
  color: var(--hs-gray);
}

.hs-feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 10px;
}
.hs-feature-card p {
  font-size: 13px;
  color: var(--hs-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Diff Banner */
.hs-diff-banner {
  background: var(--hs-navy);
  border-radius: var(--hs-radius-lg);
  padding: 40px 48px;
  color: var(--hs-white);
}
.hs-diff-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--hs-white);
  line-height: 1.4;
}
.hs-diff-col {
  border-radius: var(--hs-radius);
  padding: 20px 22px;
  height: 100%;
}
.hs-diff-col.general {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.hs-diff-col.hoiku {
  background: rgba(26,157,139,0.2);
  border: 1px solid rgba(26,157,139,0.35);
}
.hs-diff-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.hs-diff-col.hoiku .hs-diff-label {
  color: #7de8dc;
  border-bottom-color: rgba(26,157,139,0.3);
}
.hs-diff-col ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.hs-diff-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.hs-diff-col ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}
.hs-diff-col.hoiku ul li {
  color: rgba(255,255,255,0.9);
}
.hs-diff-col.hoiku ul li::before {
  content: '✓';
  color: #7de8dc;
}

/* ---------- Timeline / Scenes ---------- */
.hs-scenes { background: var(--hs-white); }

.hs-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.hs-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--hs-teal), var(--hs-border));
}

.hs-timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.hs-timeline-item:last-child { margin-bottom: 0; }

.hs-timeline-badge {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 38px; height: 38px;
  background: var(--hs-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-white);
  font-size: 16px;
  box-shadow: 0 0 0 4px rgba(26,157,139,0.15);
  z-index: 1;
}

.hs-timeline-content {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 24px 28px;
  transition: all 0.3s;
}
.hs-timeline-content:hover {
  box-shadow: var(--hs-shadow);
  border-color: var(--hs-teal);
}

.hs-timeline-week {
  font-size: 11px;
  font-weight: 700;
  color: var(--hs-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hs-timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 8px;
}
.hs-timeline-content p {
  font-size: 14px;
  color: var(--hs-text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.hs-timeline-users { display: flex; gap: 8px; flex-wrap: wrap; }
.user-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
}
.user-badge.staff { background: rgba(100,160,255,0.1); color: #4a90d9; }
.user-badge.admin { background: rgba(26,157,139,0.1); color: var(--hs-teal); }
.user-badge.owner { background: rgba(26,45,90,0.08); color: var(--hs-navy); }

/* ---------- Merits Section ---------- */
.hs-merit-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 28px 24px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.hs-merit-card:hover {
  border-color: var(--hs-teal);
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
}
.hs-merit-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--hs-green-mid);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.hs-merit-icon {
  width: 44px; height: 44px;
  background: var(--hs-teal-pale);
  color: var(--hs-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.hs-merit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 10px;
}
.hs-merit-card p {
  font-size: 13px;
  color: var(--hs-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ---------- Target Section ---------- */
.hs-target { background: var(--hs-white); }
.hs-target-card {
  background: var(--hs-gray-light);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.hs-target-card:hover {
  background: var(--hs-teal-pale);
  border-color: var(--hs-teal);
  transform: translateY(-3px);
}
.hs-target-card i {
  font-size: 32px;
  color: var(--hs-teal);
  margin-bottom: 14px;
  display: block;
}
.hs-target-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hs-navy);
  margin-bottom: 8px;
}
.hs-target-card p {
  font-size: 13px;
  color: var(--hs-text-muted);
  margin: 0;
}

/* ---------- Pricing Section ---------- */
.hs-pricing { background: var(--hs-white); }

.hs-pricing-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-lg);
  padding: 36px 30px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.hs-pricing-card:hover {
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
}
.hs-pricing-card.featured {
  border: 2px solid var(--hs-teal);
  background: var(--hs-teal-pale);
}

.hs-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hs-teal);
  color: var(--hs-white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.hs-pricing-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--hs-teal-pale);
  color: var(--hs-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.hs-pricing-card.featured .hs-pricing-icon {
  background: var(--hs-teal);
  color: var(--hs-white);
}
.hs-pricing-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--hs-navy);
  margin-bottom: 12px;
}
.hs-pricing-card p {
  font-size: 14px;
  color: var(--hs-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.hs-pricing-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 24px;
}
.hs-pricing-list li {
  font-size: 14px;
  color: var(--hs-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--hs-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hs-pricing-list li i { color: var(--hs-teal); font-size: 13px; }
.hs-pricing-list li:last-child { border-bottom: none; }

.hs-pricing-note {
  background: var(--hs-gray-light);
  border-radius: var(--hs-radius);
  padding: 16px 24px;
  font-size: 13px;
  color: var(--hs-text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--hs-teal);
}

/* ---------- CTA Section ---------- */
.hs-cta {
  background: linear-gradient(135deg, var(--hs-navy) 0%, #1e3a6e 50%, var(--hs-teal) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hs-cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.cta-shape-1 {
  width: 500px; height: 500px;
  background: var(--hs-white);
  top: -200px; right: -100px;
}
.cta-shape-2 {
  width: 300px; height: 300px;
  background: var(--hs-teal);
  bottom: -100px; left: -50px;
}

.hs-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--hs-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hs-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hs-cta-form {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--hs-radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hs-form-input {
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: var(--hs-white) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
}
.hs-form-input::placeholder { color: rgba(255,255,255,0.5) !important; }
.hs-form-input:focus {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.5) !important;
  box-shadow: none !important;
  color: var(--hs-white) !important;
}
.hs-form-input option {
  color: var(--hs-text);
  background: var(--hs-white);
}

/* ---------- Footer ---------- */
.hs-footer {
  background: var(--hs-navy);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
}
.hs-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.hs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  justify-content: center;
}
.hs-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.hs-footer-links a:hover { color: var(--hs-white); }
.hs-footer-hr {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0 20px;
}
.hs-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.hs-footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin: 0;
  line-height: 1.7;
}

/* ---------- Back to Top ---------- */
.hs-back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--hs-teal);
  color: var(--hs-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(26,157,139,0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
}
.hs-back-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.hs-back-top:hover {
  background: var(--hs-teal-light);
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- CTA Alert ---------- */
.hs-alert-success {
  background: rgba(26,157,139,0.15);
  border: 1px solid rgba(26,157,139,0.3);
  color: #7de8dc;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}
.hs-alert-error {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.25);
  color: #ffaaaa;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hs-section { padding: 72px 0; }
  .hs-hero .min-vh-100 { min-height: auto !important; padding: 100px 0 60px; }
  .hs-diff-banner { padding: 28px 24px; }
  .hs-timeline { padding-left: 50px; }
  .hs-timeline::before { left: 16px; }
  .hs-timeline-badge { left: -40px; }
}

@media (max-width: 767px) {
  .hs-section { padding: 56px 0; }
  .hs-hero-title { font-size: 1.9rem; }
  .hs-mockup-browser { display: none; }
  .hs-flow-list { gap: 0; }
  .hs-flow-item { padding: 14px 16px; }
  .hs-issues-inner { padding: 24px 20px; }
  .hs-timeline { padding-left: 44px; }
  .hs-timeline-badge { width: 32px; height: 32px; font-size: 13px; left: -40px; }
  .hs-cta { padding: 72px 0; }
  .hs-cta-form { padding: 24px 16px; }
  .hs-back-top { bottom: 20px; right: 20px; }
  .hs-diff-banner { padding: 24px 20px; }
  .mock-shift-header,
  .mock-shift-row {
    grid-template-columns: 80px repeat(8, 1fr);
  }
}

@media (max-width: 480px) {
  .hs-section-title { font-size: 1.5rem; }
  .hs-hero-title { font-size: 1.7rem; }
  .hs-hero-sub { font-size: 15px; }
}
