@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600&family=Zen+Kaku+Gothic+New:wght@400;500&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --warm-cream: #FFF8F0;
  --soft-pearl: #FEF6E8;
  --deep-espresso: #3D2E24;
  --warm-cocoa: #6B5344;
  --muted-rose: #A67C5B;
  --dusty-rose: #DBA5A5;
  --dusty-rose-dark: #C49090;
  --sage-green: #B5CEC0;
  --lavender: #C8C0D0;
  --pure-white: #FFFFFF;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-cocoa);
  background-color: var(--warm-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: var(--deep-espresso);
  letter-spacing: -0.01em;
}

strong, p {
  color: inherit;
}

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

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.vertical-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 72px;
  height: 100vh;
  background: rgba(255, 248, 240, 0.99);
  backdrop-filter: blur(20px);
  border-right: 2px solid rgba(219, 139, 139, 0.12);
  border-radius: 0 48px 48px 0;
  box-shadow: 4px 0 48px rgba(60, 40, 20, 0.06);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0;
  justify-content: space-between;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-nav:hover {
  width: 280px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dusty-rose), var(--sage-green));
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(219, 139, 139, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
}

.nav-logo-text {
  margin-top: 12px;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 10px;
  color: var(--deep-espresso);
  text-align: center;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.vertical-nav:hover .nav-logo-text {
  opacity: 1;
  max-width: none;
  margin-top: 8px;
  writing-mode: horizontal-tb;
}

.nav-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 12px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.nav-item:hover {
  background: rgba(219, 139, 139, 0.08);
  transform: translateX(4px);
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke: rgba(107, 83, 68, 0.5);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.nav-item span {
  opacity: 0;
  max-width: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--warm-cocoa);
  white-space: nowrap;
  margin-top: 8px;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.vertical-nav:hover .nav-item {
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
}

.vertical-nav:hover .nav-item span {
  opacity: 1;
  max-width: none;
  margin-top: 0;
}

.nav-item:hover span {
  color: var(--dusty-rose);
}

.nav-cta {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  width: 100%;
}

.vertical-nav:hover .nav-cta {
  display: flex;
}

.cta-button {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--dusty-rose), var(--dusty-rose-dark));
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(219, 139, 139, 0.25);
  text-align: center;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.cta-button:hover {
  box-shadow: 0 6px 24px rgba(219, 139, 139, 0.35);
  transform: translateY(-2px);
}

.nav-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dusty-rose);
  letter-spacing: 0.02em;
  text-align: center;
}

.main-content {
  margin-left: 72px;
  min-height: 100vh;
}

.mesh-gradient-bg {
  position: fixed;
  top: 0;
  left: 72px;
  width: calc(100% - 72px);
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float-blob 45s ease-in-out infinite alternate;
}

.mesh-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(219, 139, 139, 0.08) 0%, rgba(181, 206, 192, 0.04) 50%, transparent 70%);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.mesh-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181, 206, 192, 0.06) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
  animation-duration: 50s;
}

.mesh-blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(200, 192, 208, 0.05) 0%, transparent 70%);
  bottom: 20%;
  left: 40%;
  animation-delay: -20s;
  animation-duration: 55s;
}

.mesh-blob-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(219, 139, 139, 0.06) 0%, transparent 70%);
  top: 60%;
  left: 10%;
  animation-delay: -15s;
  animation-duration: 48s;
}

.mesh-blob-5 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(181, 206, 192, 0.05) 0%, transparent 70%);
  top: 25%;
  right: 10%;
  animation-delay: -25s;
  animation-duration: 52s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(0.92);
  }
  100% {
    transform: translate(50px, -50px) scale(1.08);
  }
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 80px 120px 80px;
  background: var(--warm-cream);
  overflow: hidden;
}

.hero-section .mesh-gradient-bg {
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
}

.hero-left {
  z-index: 1;
}

.hero-decor {
  margin-bottom: 28px;
  animation: scale-in 0.4s ease-out;
}

.hero-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--deep-espresso);
  line-height: 0.78;
  margin-bottom: 12px;
}

.hero-title-accent {
  font-size: clamp(28px, 3vw, 48px);
  color: var(--dusty-rose);
  line-height: 0.85;
}

.hero-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(107, 83, 68, 0.5);
  margin-top: 16px;
}

.hero-description {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  max-width: 480px;
  color: var(--warm-cocoa);
}

.hero-markers {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.marker {
  width: 24px;
  height: 10px;
  background: var(--dusty-rose);
  border-radius: 5px;
  filter: drop-shadow(0 4px 12px rgba(219, 139, 139, 0.2));
}

.hero-line {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--dusty-rose), var(--sage-green));
  border-radius: 2px;
  margin-top: 16px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn-primary {
  padding: 24px 52px;
  background: linear-gradient(135deg, var(--dusty-rose), var(--dusty-rose-dark));
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(219, 139, 139, 0.3);
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(219, 139, 139, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 22px 44px;
  background: transparent;
  border: 2px solid var(--deep-espresso);
  color: var(--deep-espresso);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  border-radius: 28px;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--dusty-rose);
  color: var(--dusty-rose);
  box-shadow: 0 6px 20px rgba(219, 139, 139, 0.15);
}

.hero-right {
  position: relative;
  z-index: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 520px;
  position: relative;
}

.bento-item {
  border-radius: 28-36px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.bento-item:hover {
  z-index: 10;
  transform: scale(1.02);
}

.bento-item-1 {
  grid-row: span 2;
  border-radius: 36px;
  margin-top: -20px;
  margin-left: -20px;
  box-shadow: 0 40px 120px rgba(60, 40, 20, 0.08);
}

.bento-item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  filter: saturate(0.98);
}

.bento-item-2, .bento-item-3, .bento-item-4, .bento-item-5 {
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(60, 40, 20, 0.06);
}

.bento-item-2 img, .bento-item-3 img, .bento-item-4 img, .bento-item-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.info-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 139, 139, 0.08);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 24px 72px rgba(60, 40, 20, 0.06);
  z-index: 5;
}

.info-card-1 {
  top: 40px;
  right: -10px;
}

.info-card-2 {
  bottom: 40px;
  right: -10px;
}

.info-card-label {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--deep-espresso);
}

.info-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dusty-rose);
}

@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.section {
  padding: 100px 80px;
  position: relative;
}

.section-alt {
  background: var(--soft-pearl);
}

.section-dark {
  background: var(--deep-espresso);
  color: var(--warm-cream);
}

.section-dark h2, .section-dark h3 {
  color: var(--warm-cream);
}

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

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-markers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.section-marker {
  width: 12px;
  height: 6px;
  background: var(--dusty-rose);
  border-radius: 3px;
}

.seamless-transition {
  height: 80px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255, 248, 240, 0.9), transparent);
  pointer-events: none;
}

.seamless-transition-alt {
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(254, 246, 232, 0.9), transparent);
}

.card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 139, 139, 0.08);
  border-radius: 28-32px;
  box-shadow: 0 32px 96px rgba(60, 40, 20, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  border-color: rgba(219, 139, 139, 0.15);
  box-shadow: 0 40px 120px rgba(219, 139, 139, 0.08);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}

.card-content {
  padding: 20px 22px 22px;
}

.card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dusty-rose);
  margin-bottom: 8px;
}

.card-title, .card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--deep-espresso);
}

.card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--warm-cocoa);
}

.card-accent {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--dusty-rose), var(--sage-green));
  border-radius: 2px;
  margin-top: 16px;
}

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

.split-section {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-right: 40px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.split-content {
  padding: 80px 60px;
}

.split-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.split-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.process-scroll {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 80px;
  scrollbar-width: none;
}

.process-scroll::-webkit-scrollbar {
  display: none;
}

.process-step {
  min-width: 360px;
  height: calc(100vh - 280px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 139, 139, 0.08);
  border-radius: 32px;
  padding: 32px;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 32px 96px rgba(60, 40, 20, 0.06);
  display: flex;
  flex-direction: column;
}

.process-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  font-weight: 600;
  color: rgba(219, 139, 139, 0.12);
  line-height: 1;
}

.process-icon {
  width: 56px;
  height: 56px;
  margin: 16px 0;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--dusty-rose);
  stroke-width: 2;
  fill: none;
}

.process-step-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-cocoa);
}

.process-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  margin-top: 16px;
}

.progress-bar {
  position: fixed;
  bottom: 0;
  left: 72px;
  right: 0;
  height: 4px;
  background: rgba(237, 229, 216, 0.8);
  z-index: 100;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dusty-rose), var(--sage-green));
  width: 0%;
  transition: width 0.3s ease;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.6s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 96px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(219, 139, 139, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 32px 96px rgba(60, 40, 20, 0.12);
  z-index: 2000;
  display: block;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-espresso);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--warm-cocoa);
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--dusty-rose), var(--dusty-rose-dark));
  color: white;
}

.cookie-accept:hover {
  box-shadow: 0 6px 20px rgba(219, 139, 139, 0.3);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--warm-cocoa);
  color: var(--warm-cocoa);
}

.cookie-decline:hover {
  border-color: var(--dusty-rose);
  color: var(--dusty-rose);
}

.site-footer {
  background: var(--deep-espresso);
  color: var(--warm-cream);
  padding: 60px 80px 40px;
  margin-left: 72px;
}

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

.footer-col h4 {
  font-size: 14px;
  color: var(--dusty-rose);
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.7);
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: var(--dusty-rose);
}

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

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.5);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.7);
}

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

.mobile-menu-btn {
  display: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 20, 15, 0.95);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.mobile-nav-overlay .mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 20px;
}

.mobile-nav-overlay .mobile-menu-content a {
  font-size: 24px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-overlay .mobile-menu-content a:hover {
  color: var(--dusty-rose);
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-items a {
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-items a:hover {
  color: var(--dusty-rose);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: var(--cream);
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--dusty-rose);
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
}

.mobile-nav-contact {
  text-align: center;
  color: rgba(255, 248, 240, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .vertical-nav {
    width: 100%;
    height: 64px;
    border-radius: 0;
    flex-direction: row;
    padding: 0 20px;
    top: 0;
  }

  .vertical-nav:hover {
    width: 100%;
  }

  .nav-logo {
    flex-direction: row;
    gap: 12px;
  }

  .nav-logo-text {
    writing-mode: horizontal-tb;
    margin-top: 0;
    opacity: 1;
    max-width: none;
  }

  .nav-items {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    width: 48px;
    height: 48px;
    background: rgba(219, 139, 139, 0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1000;
  }

  .mobile-menu-btn svg {
    stroke: var(--dusty-rose);
    stroke-width: 2;
    width: 24px;
    height: 24px;
  }

  .main-content {
    margin-left: 0;
    margin-top: 64px;
  }

  .mesh-gradient-bg {
    left: 0;
    width: 100%;
  }

  .hero-section {
    padding: 60px 24px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .section {
    padding: 60px 24px;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    margin-right: 0;
    margin-bottom: 32px;
  }

  .split-content {
    padding: 0;
  }

  .site-footer {
    margin-left: 0;
    padding: 40px 24px;
  }

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

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

  .cookie-banner {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .progress-bar {
    left: 0;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    text-align: center;
    width: 100%;
  }
}

