/* ============================================
   BENTO M&A — Service Page Shared Styles
   ============================================ */

:root {
  --ink: #1a1a1f;
  --ink-soft: #2c2c33;
  --ai: #16384a;
  --ai-deep: #0d1f2a;
  --shu: #b8423b;
  --shu-deep: #8a2f29;
  --kinari: #f5f1e8;
  --kinari-deep: #ebe5d4;
  --sumi: #3a3a40;
  --kohaku: #c9a961;
  --matcha: #6b8e6b;
  --gray-1: #6b6b73;
  --gray-2: #9a9aa3;
  --line: rgba(26, 26, 31, 0.08);
  --line-strong: rgba(26, 26, 31, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--kinari);
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 66, 59, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(22, 56, 74, 0.02) 0%, transparent 50%);
  mix-blend-mode: multiply;
}

.serif { font-family: 'Shippori Mincho', 'Yu Mincho', serif; font-feature-settings: "palt"; }
.latin { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.02em; }
.mono { font-family: 'DM Mono', monospace; }

/* Navigation */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

nav {
  max-width: 1400px; margin: 0 auto; padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; letter-spacing: 0.18em; color: var(--ai); }
.logo-sub { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--shu); border-left: 1px solid var(--line-strong); padding-left: 10px; text-transform: uppercase; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; color: var(--ink-soft); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--shu); }

.nav-cta {
  background: var(--ai); color: var(--kinari) !important;
  padding: 10px 22px; border-radius: 2px;
  font-size: 12px !important; letter-spacing: 0.1em !important;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--shu) !important;
  transform: translateY(-1px);
}

/* Common Buttons */
.btn-primary {
  background: var(--ai); color: var(--kinari);
  padding: 18px 36px; border: none; border-radius: 2px;
  font-size: 14px; letter-spacing: 0.1em; font-weight: 500;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; font-family: inherit;
}

.btn-primary:hover {
  background: var(--shu); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 66, 59, 0.25);
}

.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 18px 36px; border: 1px solid var(--line-strong);
  border-radius: 2px; font-size: 14px; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; font-family: inherit;
}

.btn-ghost:hover { border-color: var(--ai); color: var(--ai); }

/* Footer */
footer {
  background: var(--ai-deep);
  color: rgba(245, 241, 232, 0.7);
  padding: 80px 48px 40px;
  position: relative; z-index: 2;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.footer-brand .logo-mark {
  color: var(--kinari); font-size: 32px; display: block; margin-bottom: 12px;
}

.footer-brand-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px; color: rgba(245, 241, 232, 0.6);
  margin-bottom: 28px; line-height: 1.8;
}

.footer-company {
  font-size: 12px; line-height: 1.9; color: rgba(245, 241, 232, 0.5);
}

.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--kohaku);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(245, 241, 232, 0.7); text-decoration: none;
  font-size: 13px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--kohaku); }

.footer-bottom {
  padding-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(245, 241, 232, 0.4);
  letter-spacing: 0.1em; font-family: 'DM Mono', monospace;
}

/* Service Page Specific Styles */
.service-hero {
  min-height: 70vh;
  padding: 160px 48px 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-1);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gray-1);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--shu); }
.breadcrumb-sep { opacity: 0.4; }

.stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: rgba(22, 56, 74, 0.08);
  border-left: 3px solid var(--ai);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ai);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.stage-tag.stage-2 {
  background: rgba(184, 66, 59, 0.06);
  border-left-color: var(--shu);
  color: var(--shu);
}

.stage-tag.stage-3 {
  background: rgba(107, 142, 107, 0.08);
  border-left-color: var(--matcha);
  color: var(--matcha);
}

.service-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.service-hero h1 .accent { color: var(--shu); }

.service-hero-lead {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 580px;
}

.service-hero-lead strong { color: var(--shu); font-weight: 500; }

.service-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}

.service-hero-price .price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.service-hero-price .price-unit {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--gray-1);
}

.service-hero-price .price-note {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: var(--gray-1);
  margin-left: 12px;
}

.hero-cta-group { display: flex; gap: 20px; flex-wrap: wrap; }

/* Service Hero Visual */
.service-hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  justify-self: end;
}

.service-bento {
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
  background: var(--kinari);
  box-shadow: 16px 16px 0 var(--ai);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-bento.stage-2-visual { box-shadow: 16px 16px 0 var(--shu); }
.service-bento.stage-3-visual { box-shadow: 16px 16px 0 var(--matcha); }

.service-bento-stage {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 80px;
  font-weight: 300;
  color: var(--shu);
  line-height: 1;
  margin-bottom: 12px;
}

.service-bento-kanji {
  font-family: 'Shippori Mincho', serif;
  font-size: 120px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-bento-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gray-1);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.service-bento-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.service-bento-list {
  list-style: none;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 2;
}

.service-bento-list li::before {
  content: '— ';
  color: var(--shu);
}

.service-bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--kinari);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-bento-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--shu);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* Service Section Common */
.service-section {
  padding: 100px 48px;
  position: relative;
  z-index: 2;
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--shu);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.service-eyebrow::before {
  content: attr(data-num);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ai);
  border-right: 1px solid var(--line-strong);
  padding-right: 14px;
  letter-spacing: 0;
}

.service-section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.service-section-lead {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 60px;
}

.service-section-lead strong { color: var(--shu); font-weight: 500; }

/* Feature Detail Block */
.feature-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.feature-detail:last-child { border-bottom: none; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 80px;
  font-weight: 300;
  color: var(--ai);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border: 1px solid var(--ai);
  color: var(--ai);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-tag.ai { color: var(--shu); border-color: var(--shu); }
.feature-tag.cpa { color: var(--ai); border-color: var(--ai); }
.feature-tag.combined { color: var(--kohaku); border-color: var(--kohaku); }

.feature-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.feature-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gray-2);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.feature-desc strong { color: var(--shu); font-weight: 500; }

.feature-output {
  background: rgba(22, 56, 74, 0.04);
  border-left: 3px solid var(--ai);
  padding: 20px 24px;
  margin-top: 24px;
}

.feature-output-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ai);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-output-list {
  list-style: none;
}

.feature-output-list li {
  font-size: 14px;
  line-height: 1.9;
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--ink-soft);
}

.feature-output-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--shu);
  font-size: 10px;
  top: 7px;
}

.feature-process {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 12px 16px;
  background: var(--kinari-deep);
  border-left: 2px solid var(--shu);
}

.process-arrow {
  font-family: 'Cormorant Garamond', serif;
  color: var(--shu);
  font-size: 18px;
}

/* CTA Banner */
.cta-banner {
  background: var(--ink);
  color: var(--kinari);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner.shu { background: var(--shu); }
.cta-banner.matcha { background: var(--matcha); }

.cta-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.cta-banner p {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 2;
  color: rgba(245, 241, 232, 0.85);
  margin-bottom: 40px;
}

.cta-banner .btn-primary {
  background: var(--kinari);
  color: var(--ink);
}

.cta-banner .btn-primary:hover {
  background: var(--kohaku);
  color: var(--ink);
}

.cta-banner .btn-ghost {
  border-color: rgba(245, 241, 232, 0.4);
  color: var(--kinari);
}

.cta-banner .btn-ghost:hover {
  border-color: var(--kinari);
  color: var(--kinari);
}

/* Plan navigation cards */
.plan-nav {
  background: var(--kinari-deep);
  padding: 100px 48px;
}

.plan-nav-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-nav-card {
  background: var(--kinari);
  border: 1px solid var(--line-strong);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: block;
}

.plan-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(26, 26, 31, 0.08);
  border-color: var(--shu);
}

.plan-nav-card.current {
  background: var(--ink);
  color: var(--kinari);
  border-color: var(--ink);
  pointer-events: none;
}

.plan-nav-card.current .plan-nav-stage { color: var(--kohaku); }
.plan-nav-card.current .plan-nav-name { color: var(--kinari); }
.plan-nav-card.current .plan-nav-desc { color: rgba(245, 241, 232, 0.7); }

.plan-nav-stage {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--shu);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan-nav-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.plan-nav-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.plan-nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--shu);
  text-transform: uppercase;
}

.plan-nav-link::after { content: ' →'; }

/* Section variants */
.section-ink {
  background: var(--ink);
  color: var(--kinari);
}

.section-ink .service-section-title { color: var(--kinari); }
.section-ink .service-section-lead { color: rgba(245, 241, 232, 0.85); }
.section-ink .service-eyebrow { color: var(--kohaku); }
.section-ink .service-eyebrow::before {
  color: var(--kinari);
  border-right-color: rgba(245, 241, 232, 0.2);
}

.section-ai {
  background: var(--ai-deep);
  color: var(--kinari);
  position: relative;
  overflow: hidden;
}

.section-ai .service-section-title { color: var(--kinari); }
.section-ai .service-section-lead { color: rgba(245, 241, 232, 0.85); }
.section-ai .service-eyebrow { color: var(--kohaku); }
.section-ai .service-eyebrow::before {
  color: var(--kinari);
  border-right-color: rgba(245, 241, 232, 0.2);
}

.section-ai .feature-detail { border-bottom-color: rgba(245, 241, 232, 0.1); }
.section-ai .feature-num { color: var(--kohaku); }
.section-ai .feature-title { color: var(--kinari); }
.section-ai .feature-desc { color: rgba(245, 241, 232, 0.78); }
.section-ai .feature-desc strong { color: var(--kohaku); }
.section-ai .feature-output { background: rgba(245, 241, 232, 0.04); border-left-color: var(--kohaku); }
.section-ai .feature-output-label { color: var(--kohaku); }
.section-ai .feature-output-list li { color: rgba(245, 241, 232, 0.78); }
.section-ai .feature-output-list li::before { color: var(--kohaku); }
.section-ai .feature-tag { color: var(--kohaku); border-color: var(--kohaku); }

/* Workflow / Process Visualization */
.workflow {
  background: var(--kinari);
  padding: 100px 48px;
}

.workflow-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-steps {
  margin-top: 60px;
  position: relative;
}

.workflow-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px dashed var(--line-strong);
  position: relative;
}

.workflow-step:last-child { border-bottom: none; }

.workflow-step-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.workflow-week {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--shu);
  text-transform: uppercase;
}

.workflow-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
  color: var(--ai);
  line-height: 1;
}

.workflow-content h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.workflow-actor {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--shu);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.workflow-content p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* FAQ */
.service-faq {
  background: var(--kinari);
  padding: 100px 48px;
}

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

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

.faq-q {
  padding: 24px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--shu); }

.faq-q-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--shu);
  flex-shrink: 0;
  width: 40px;
}

.faq-q-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 500;
  flex-grow: 1;
}

.faq-q-toggle {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  color: var(--ai);
  transition: transform 0.3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 0 24px 64px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .service-hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .plan-nav-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
  .service-hero,
  .service-section,
  .cta-banner,
  .plan-nav,
  .workflow,
  .service-faq {
    padding: 60px 24px;
  }
  .service-hero { padding-top: 100px; }
  .service-hero h1 { font-size: 32px; }
  .service-section-title { font-size: 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-process { font-size: 9px; }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
