@charset "UTF-8";

/* ==========================================================================
   Groupfile LP Stylesheet
   - Refined for high contrast, professional B2B tone & zero UI anti-patterns
   ========================================================================== */

:root {
  /* Professional Business Palette (High Contrast & Solid Credibility) */
  --canvas: #FAF9F7;
  --surface: #FFFFFF;
  --surface-soft: #F9F0EB;
  --surface-card: #FFFFFF;
  --primary: #B83218;          /* 5.8:1 contrast on white, 4.6+:1 on soft backgrounds */
  --primary-hover: #98240F;
  --primary-dark: #781B0A;
  --primary-light: #FBF0EB;
  --accent-yellow: #C88214;
  --accent-terracotta: #9B3B24;
  --accent-light-orange: #F7E9E2;
  --text: #1F1C1A;              /* Crisp rich charcoal */
  --text-muted: #4E4641;        /* High-readability muted text (>= 4.5:1) */
  --text-light: #6E6560;
  --border: #D8CEC6;
  --border-light: #EAE2DB;
  --trust-dark: #1A2636;        /* Serious, credible deep navy */
  --trust-card: #24354A;
  --success: #1A734E;
  
  /* Typography */
  --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;

  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 14px rgba(45, 30, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(45, 30, 20, 0.08);
  --shadow-lg: 0 20px 48px rgba(45, 30, 20, 0.12);

  /* Container */
  --container-max: 1160px;
  --gutter: 24px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--canvas);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section Common */
.section {
  padding-block: 84px;
  padding-inline: 16px;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text);
}

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Badges & Accents */
.badge-orange {
  color: var(--primary);
  font-weight: 800;
}

.handwritten {
  font-family: var(--font-hand);
  color: var(--accent-terracotta);
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 13px 28px;
  font-size: 0.95rem;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(45, 30, 20, 0.18);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 18px rgba(45, 30, 20, 0.24);
}

.btn-outline {
  background-color: #FFFFFF;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--surface-soft);
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(45, 30, 20, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-logo img,
.site-logo .logo-img {
  height: 40px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}

.site-logo svg {
  width: 28px;
  height: 28px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-block: 4px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 18px;
}

/* Hamburger & Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: calc(100vh - 72px);
  background-color: #FFFFFF;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer a {
  font-size: 1.05rem;
  font-weight: 600;
  padding-block: 8px;
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 48px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #FAF2EC 0%, var(--canvas) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-check-item svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero Key Visual (Generated Illustration) */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(35, 20, 10, 0.14));
}

/* ==========================================================================
   Proof Bar / Logos & Stats
   ========================================================================== */
.proof-section {
  padding-block: 48px 64px;
  padding-inline: 20px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: var(--surface);
}

.proof-logos-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.proof-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.proof-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5A524D;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.proof-logo-item img {
  width: 100%;
  max-width: 150px;
  height: 64px;
  object-fit: contain;
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 3px;
}

.stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
}

.stat-value span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-left: 3px;
}

/* ==========================================================================
   Pain Points Section
   ========================================================================== */
.pain-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: var(--canvas);
}

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

.pain-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.pain-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.pain-card-header {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.48;
  color: var(--text);
  min-height: 46px;
  margin-bottom: 14px;
}

.pain-card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #FAF6F2;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.pain-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.pain-card-quote {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  text-align: center;
  background: var(--surface-soft);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  margin-top: auto;
}

/* ==========================================================================
   Three Benefits Section (Dark Tech Blueprint Theme)
   ========================================================================== */
.benefits-dark-section {
  padding-block: 96px 108px;
  padding-inline: 20px;
  background-color: #16222F;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.25px, transparent 1.25px);
  background-size: 26px 26px;
  position: relative;
}

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

.benefits-dark-title {
  color: #FFFFFF;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.benefits-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-dark-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.benefit-card-step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.benefit-card-step .step-num {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  font-family: monospace;
}

.benefit-card-step .step-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.benefit-card-visual {
  background: #FAF3EC;
  border-radius: 14px;
  padding: 18px 16px;
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(220, 205, 195, 0.5);
  box-sizing: border-box;
}

/* Card 1 Visual: Search */
.vis-search-bar {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px 12px;
  width: 92%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.vis-slides-row {
  display: flex;
  gap: 8px;
  width: 92%;
  margin-bottom: 10px;
}

.vis-slide {
  background: #FFFFFF;
  border-radius: 6px;
  flex: 1;
  height: 48px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.vis-slide .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.vis-slide .dot.red {
  background-color: var(--primary);
}

.vis-slide .dot.gray {
  background-color: #B2A9A0;
}

.slide-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.slide-lines span {
  height: 3px;
  background: #EAE2DB;
  border-radius: 2px;
  width: 80%;
}

.slide-lines span.bar-accent {
  background: #DCA357;
  width: 55%;
}

.vis-bottom-tag {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

/* Card 2 Visual: Share */
.vis-share-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 14px;
}

.vis-doc-box {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-connect-line {
  flex: 1;
  max-width: 65px;
  height: 2px;
  border-top: 2px dashed #D4A895;
}

.vis-targets-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.target-bubble {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.target-bubble.navy {
  background: #1F2D3D;
}

.target-bubble.orange {
  background: var(--primary);
}

.target-bubble.yellow {
  background: #DCA357;
}

.vis-pills-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.vis-sec-pill {
  background: #FFFFFF;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #524B46;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Card 3 Visual: Update */
.vis-sync-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 14px;
}

.vis-slide-item {
  background: #FFFFFF;
  border-radius: 8px;
  width: 68px;
  height: 50px;
  padding: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vis-slide-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.vis-slide-item .dot.gray {
  background: #C4BBB3;
}

.vis-slide-item .dot.red {
  background: var(--primary);
}

.vis-sync-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-pill-badge {
  background: #1A2636;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 4px 16px;
  letter-spacing: 0.02em;
}

/* Card Texts */
.benefit-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.42;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.benefit-card-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ==========================================================================
   Use Cases Section (Alternating Editorial Rows)
   ========================================================================== */
.usecases-section {
  padding-block: 96px;
  padding-inline: 20px;
  background-color: var(--canvas);
}

.usecase-rows-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 56px;
}

.usecase-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}

.usecase-row.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.usecase-row.reverse .usecase-image {
  order: 2;
}

.usecase-row.reverse .usecase-copy {
  order: 1;
}

.usecase-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background-color: #FAF6F2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45, 30, 20, 0.05);
}

.usecase-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.usecase-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case-label {
  display: inline-flex;
  align-self: flex-start;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(184, 50, 24, 0.15);
  letter-spacing: 0.02em;
}

.usecase-copy h3 {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.015em;
}

.usecase-copy p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.chips li {
  background: #FAF8F5;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chips li::before {
  content: '✔';
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Inline CTA */
.inline-cta {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.inline-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inline-cta-text strong {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
}

.inline-cta-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: #FFFFFF;
}

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

.feature-item {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #F0DDD4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(45, 30, 20, 0.06);
}

.feature-name {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}

.feature-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Product Showcase
   ========================================================================== */
.showcase-section {
  padding-block: 96px;
  padding-inline: 20px;
  background-color: var(--canvas);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.showcase-container {
  max-width: 1040px;
}

.showcase-embed-wrap {
  max-width: 920px;
  min-height: 240px;
  margin-inline: auto;
  padding: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.showcase-embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
}

.sample-pages {
  max-width: 920px;
  margin: 48px auto 0;
}

.sample-pages-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.sample-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sample-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 22px;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.sample-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sample-link-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: var(--canvas);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.comparison-copy h2 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 20px;
}

.comparison-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.comparison-table-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}

.comparison-table th, 
.comparison-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th {
  background: #FAF8F5;
  font-weight: 800;
  color: var(--text);
}

.comparison-table thead th.col-gf {
  background: #F7EDE8;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.comparison-table tbody td.col-item {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  padding-left: 20px;
}

.comparison-table tbody td.col-gf {
  background: #FCF7F4;
  font-weight: 800;
  color: var(--primary);
}

.comparison-table .symbol-circle {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
}

.comparison-table .symbol-sub {
  color: #6E6560;
  font-size: 0.95rem;
}

/* ==========================================================================
   Security Panel
   ========================================================================== */
.security-section {
  background-color: var(--trust-dark);
  color: #FFFFFF;
  padding-block: 84px;
  padding-inline: 20px;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.security-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.security-badge-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.security-shield-icon {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.9);
}

.security-left h2 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.security-left p {
  font-size: 0.98rem;
  color: #C2D0DF;
  line-height: 1.75;
}

.security-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.security-card {
  background-color: var(--trust-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.security-card svg {
  color: #82C4FF;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-card h3 {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.security-card p {
  font-size: 0.8rem;
  color: #B2C5DA;
  line-height: 1.5;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: var(--canvas);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.pricing-copy h2 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}

.pricing-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.pricing-cards-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.featured-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 7px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.pricing-card.featured .pricing-card-inner {
  padding-top: 14px;
}

.pricing-plan-badge {
  display: inline-block;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-price.custom-plan {
  font-size: 1.7rem;
  font-weight: 700;
}

.pricing-price span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.pricing-sub-badge {
  display: inline-flex;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-feature-item svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: #FFFFFF;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
}

.faq-copy h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--canvas);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.faq-toggle-icon {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
  padding-top: 14px;
}

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

/* ==========================================================================
   Free Trial & Demo CTA
   ========================================================================== */
.final-cta-section {
  padding-block: 84px;
  padding-inline: 20px;
  background-color: var(--canvas);
}

.final-cta-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 52px 36px;
  background: linear-gradient(135deg, #F4E2D8 0%, #FAF1EC 100%);
  border: 1px solid #E6D0C5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.final-cta-visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0.95;
}

.final-cta-visual-bg img.female,
.final-cta-visual-bg img.male {
  height: 88%;
  max-width: 280px;
  object-fit: contain;
}

.final-cta-visual-bg img.female {
  object-position: bottom left;
}

.final-cta-visual-bg img.male {
  object-position: bottom right;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.final-cta-catch {
  margin-bottom: 12px;
  color: var(--accent-terracotta);
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 700;
}

.final-cta-title {
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.45;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
}

.doc-form-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 48px 40px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.doc-form-title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 1.65rem;
  font-weight: 800;
}

.doc-form-sub {
  margin-bottom: 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding-block: 52px 36px;
  padding-inline: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a:hover {
  color: var(--text);
}

/* ==========================================================================
   Responsive / SP Layouts (Media Queries)
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1180px) {
  .nav-desktop {
    gap: 18px;
  }

  .nav-link-intermediate-hidden {
    display: none;
  }
}

@media (max-width: 1024px) {
  .proof-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-checks {
    justify-content: center;
  }

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

  .usecase-row,
  .usecase-row.reverse {
    gap: 32px;
    padding: 30px 28px;
  }

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

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 56px;
    padding-inline: 16px;
  }

  .benefits-dark-section {
    padding-block: 64px;
    padding-inline: 16px;
  }

  .benefits-dark-title {
    font-size: 1.7rem;
    line-height: 1.35;
  }

  .benefits-dark-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .nav-desktop,
  .header-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-visual-img {
    max-width: 100%;
  }

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

  .proof-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

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

  .pain-card-image {
    height: 190px;
  }

  .benefits-grid,
  .benefits-dark-grid {
    grid-template-columns: 1fr;
  }

  .usecase-row,
  .usecase-row.reverse {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .usecase-row.reverse .usecase-image {
    order: 0;
  }

  .usecase-row.reverse .usecase-copy {
    order: 1;
  }

  .usecase-copy h3 {
    font-size: 1.25rem;
  }

  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .inline-cta .btn {
    width: 100%;
  }

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

  .showcase-section {
    padding-block: 64px;
    padding-inline: 16px;
  }

  .showcase-embed-wrap {
    min-height: 160px;
    padding: 6px;
    border-radius: var(--radius-md);
  }

  .sample-pages {
    margin-top: 36px;
  }

  .sample-links-grid {
    grid-template-columns: 1fr;
  }

  .sample-link {
    min-height: 64px;
    padding: 16px 18px;
  }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 540px;
  }

  .comparison-table tbody td.col-item {
    position: sticky;
    left: 0;
    background-color: #FFFFFF;
    z-index: 2;
    box-shadow: 2px 0 6px rgba(0,0,0,0.04);
  }

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

  .final-cta-visual-bg {
    display: none;
  }

  .final-cta-title {
    font-size: 1.55rem;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .doc-form-card {
    padding: 32px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
