/* ===================================================================
   Knots by MIREAL — Landing Page Stylesheet
   =================================================================== */

/* ===== CSS Variables ===== */
:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-pale: #e8d5c0;
  --gold-accent: #c9a87c;
  --grey-dark: #4a4a4a;
  --grey-medium: #7a7a7a;
  --grey-light: #a8a8a8;
  --grey-pale: #d0d0d0;
  --bg-cream: #faf8f5;
  --bg-warm: #f5f0ea;
  --bg-white: #ffffff;
  --text-primary: #5a5a5a;
  --text-secondary: #8a8a8a;
  --text-light: #b0b0b0;
  --border-soft: rgba(184, 149, 106, 0.15);
  --shadow-soft: 0 4px 30px rgba(184, 149, 106, 0.08);
  --shadow-medium: 0 8px 40px rgba(184, 149, 106, 0.12);
  --font-script: 'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;
  --section-padding: clamp(80px, 12vw, 160px);
  --container-width: min(1200px, 90vw);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: var(--container-width);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }


/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
  padding: 12px 0;
}

/* When nav is over the video hero, keep links white */
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .nav-links a::after { background: #fff; }
.nav:not(.scrolled) .hamburger span { background: #fff; }

.nav-inner {
  width: var(--container-width);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.4s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  display: block;
  width: 26px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-serif-jp) !important;
  font-size: 0.75rem !important;
  color: var(--bg-white) !important;
  background: var(--gold);
  padding: 8px 24px;
  border-radius: 2px;
  letter-spacing: 3px !important;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}


/* =============================================================
   Hero — Full-screen Video Background
   ============================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.40) 100%
  );
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 1.5s ease;
}

.hero-script {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 4px;
  animation: fadeInUp 1s ease 0.3s both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero-sub-brand {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
  margin: 0 auto 48px;
  animation: fadeIn 1s ease 0.7s both;
}

.hero-tagline {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 2;
  letter-spacing: 4px;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.9s both;
  text-shadow: 0 1px 20px rgba(0,0,0,0.2);
}

.hero-tagline-accent {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  display: block;
  margin-top: 8px;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 32px;
  animation: fadeInUp 1s ease 1.3s both;
}


/* =============================================================
   Section Common
   ============================================================= */
.section { padding: var(--section-padding) 0; }

.section-label {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: var(--grey-dark);
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.section-line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  margin: 0 auto 48px;
}

.section-desc {
  font-family: var(--font-sans-jp);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 2;
  font-weight: 300;
}


/* =============================================================
   Concept
   ============================================================= */
.concept { background: var(--bg-white); }

.concept-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.concept-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.concept-text p {
  font-family: var(--font-sans-jp);
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 2.2;
  margin-bottom: 20px;
}

.concept-text .concept-emphasis {
  font-family: var(--font-serif-jp);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gold-pale);
  display: inline-block;
}


/* =============================================================
   Problems
   ============================================================= */
.problems { background: var(--bg-cream); }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-white);
  padding: 36px 28px;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.problem-card h4 {
  font-family: var(--font-serif-jp);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-dark);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.problem-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 300;
}


/* =============================================================
   Solution
   ============================================================= */
.solution { background: var(--bg-white); }

.solution-flow { max-width: 800px; margin: 0 auto; }

.solution-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.solution-before,
.solution-after {
  padding: 28px;
  border-radius: 2px;
}

.solution-before { background: #faf5f0; text-align: right; }
.solution-after  { background: var(--bg-warm); }

.solution-before h5,
.solution-after h5 {
  font-family: var(--font-serif-jp);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.solution-before h5 { color: var(--grey-light); }
.solution-after h5  { color: var(--gold); }

.solution-before p,
.solution-after p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.solution-arrow {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}


/* =============================================================
   Service / Package
   ============================================================= */
.service { background: var(--bg-cream); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.price-box {
  background: var(--bg-white);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
}

.price-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-name {
  font-family: var(--font-serif-jp);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-amount small {
  font-size: 1.2rem;
  color: var(--text-light);
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 16px;
  font-weight: 300;
}

.workflow-box {
  background: var(--bg-white);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.workflow-box h4 {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-dark);
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 36px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.workflow-step {
  text-align: center;
  flex: 1;
}

.workflow-step h5 {
  font-family: var(--font-serif-jp);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-dark);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.workflow-step p {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
}

.workflow-arrow {
  color: var(--gold-pale);
  font-size: 1.2rem;
}

/* Video Structure */
.video-structure {
  background: var(--bg-white);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.video-structure h4 {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.structure-parts {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.structure-part {
  flex: 1;
  max-width: 220px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  transition: border-color 0.3s;
}
.structure-part:hover { border-color: var(--gold-light); }

.structure-part .part-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.structure-part h5 {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.structure-part p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 300;
}


/* =============================================================
   Style Gallery
   ============================================================= */
.styles { background: var(--bg-white); }

.style-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.style-img-wrap {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
}

.style-img-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.style-card:hover .style-img-placeholder { transform: scale(1.05); }

/* When a real image is used instead of placeholder */
.style-img-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.style-card:hover .style-img-wrap img { transform: scale(1.05); }

.style-img-placeholder.modern   { background: linear-gradient(135deg, #2c2c3a 0%, #1a1a2e 50%, #3a3a4a 100%); }
.style-img-placeholder.cinematic { background: linear-gradient(135deg, #c8956e 0%, #e8c4a0 30%, #d4a574 70%, #8a6540 100%); }
.style-img-placeholder.heritage  { background: linear-gradient(135deg, #5a7a5a 0%, #7a9a6a 30%, #8aaa7a 70%, #4a6a4a 100%); }

.style-img-placeholder span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
}

.style-info { padding: 28px 0 8px; }

.style-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.style-info h4 {
  font-family: var(--font-serif-jp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.style-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
}


/* =============================================================
   Options
   ============================================================= */
.options { background: var(--bg-cream); }

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.option-card {
  background: var(--bg-white);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.option-card:hover { transform: translateY(-4px); }
.option-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-pale);
}

.option-card h4 {
  font-family: var(--font-serif-jp);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.option-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
}


/* =============================================================
   Process
   ============================================================= */
.process { background: var(--bg-white); }

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.process-step h5 {
  font-family: var(--font-serif-jp);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  max-width: 160px;
  margin: 0 auto;
}

.process-connector {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold-pale);
  margin-top: 24px;
}


/* =============================================================
   Value
   ============================================================= */
.value {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.value::before {
  content: '\201C';
  font-family: var(--font-script);
  font-size: 20rem;
  color: var(--gold);
  opacity: 0.03;
  position: absolute;
  top: -60px; left: 5%;
  pointer-events: none;
}

.value-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.value-content blockquote {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 2.2;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.value-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.value-item { text-align: center; }

.value-item h5 {
  font-family: var(--font-serif-jp);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-dark);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 300;
}


/* =============================================================
   CTA
   ============================================================= */
.cta-section {
  background: var(--bg-cream);
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-message {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 3px;
  margin-bottom: 48px;
  line-height: 2;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-serif-jp);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--bg-white);
  background: var(--gold);
  padding: 18px 64px;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}
.cta-button:hover {
  background: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 149, 106, 0.25);
}
.cta-button:hover::before { left: 100%; }

.cta-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  font-weight: 300;
}


/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: #3a3632;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-logo-img {
  display: block;
  width: 33px;
  height: 40px;
}

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

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold-light); }


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

@media (max-width: 768px) {
  :root { --section-padding: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .concept-text { padding: 0 16px; }

  .problem-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .solution-item {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .solution-before { text-align: center; }

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

  .style-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .option-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 24px;
  }
  .workflow-arrow { transform: rotate(90deg); }

  .structure-parts {
    flex-direction: column;
    align-items: center;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
  }

  .value-items {
    flex-direction: column;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
