/* ==========================================================================
   Pomogochi GitHub Landing Page Stylesheet
   Design Philosophy: Clean, Playful, Warm & Premium Village Aesthetic
   ========================================================================== */

/* 1. Global Reset & CSS Variables */
:root {
  --color-bg: #F8F5F0;
  --color-card-bg: #FFFBF5;
  --color-primary: #5B9E4B;
  --color-primary-hover: #4A883C;
  --color-text-dark: #1A202C;
  --color-text-body: #4A5568;
  --color-text-muted: #718096;
  --color-border: #E2E8F0;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-hero: 28px;
  --radius-card: 24px;
  --radius-pill: 9999px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-button: 0 4px 14px rgba(91, 158, 75, 0.28);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 10px 1.5rem 1.25rem; /* 상단 여백 (10px) */
}

/* Site Outer Wrapper */
.site-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   2. Header & Navbar (Overlaid on Hero Background)
   ========================================================================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 3rem 0;
}

.logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 124px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
}

.logo-default {
  opacity: 1;
}

.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.logo-link:hover .logo-default {
  opacity: 0;
}

.logo-link:hover .logo-hover {
  opacity: 1;
  transform: scale(1.03);
}

.nav-center {
  margin-left: auto;
  margin-right: 2.5rem;
  transform: translateY(-20px);
}

.nav-right {
  transform: translateY(-20px);
}

/* Standalone Navbar (Sub-pages only) */
.navbar-standalone .nav-center {
  margin-right: 1.5rem;
}

.navbar-standalone .nav-links {
  gap: 0.95rem;
}

.navbar-standalone .nav-links a {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

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

.nav-links a.active {
  color: var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  border-radius: 2px;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-youtube:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.yt-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #EBF3E8;
}

.hero-bg-container {
  width: 100%;
  position: relative;
  line-height: 0;
}

.hero-bg-container picture {
  display: block;
  width: 100%;
}

.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

/* Hero Text & Buttons Overlay */
.hero-content {
  position: absolute;
  top: 22%;
  left: 5.5%;
  max-width: 520px;
  z-index: 5;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.clover-icon {
  font-size: 2.2rem;
  vertical-align: middle;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #334155;
  margin-top: 1.25rem;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.cta-wrapper {
  display: inline-flex;
}

.btn-primary, .btn-secondary, .btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-main-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

.btn-sub-badge {
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 3px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-light {
  color: #DCFCE7;
}

.badge-muted {
  color: #94A3B8;
}

/* 1. 강조 버튼 (Right Button: Use in Browser) */
.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 0.8rem 1.9rem;
  box-shadow: var(--shadow-button);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 175, 80, 0.45);
}

/* 2. 비활성화/티저 버튼 (Left Button: Mobile App Coming Soon) */
.btn-disabled {
  background-color: rgba(241, 245, 249, 0.85);
  color: #94A3B8;
  padding: 0.8rem 1.9rem;
  border: 1.5px dashed #CBD5E1;
  cursor: not-allowed;
  user-select: none;
  opacity: 0.85;
}

/* ==========================================================================
   4. Quick Category Bar (Round White Lounge Bar)
   ========================================================================== */
.quick-bar-wrapper {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  max-width: 1220px;
  z-index: 10;
}

.quick-bar {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-card);
  padding: 1rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: none;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.quick-item:hover {
  transform: translateY(-4px);
}

.quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* Soft Pastel Background Colors for Icons */
.icon-bg-pink   { background-color: #FFEAEF; }
.icon-bg-orange { background-color: #FFF0E0; }
.icon-bg-yellow { background-color: #FFF9DB; }
.icon-bg-red    { background-color: #FFEBEB; }
.icon-bg-gold   { background-color: #FFF4CC; }
.icon-bg-purple { background-color: #F3EAFD; }
.icon-bg-peach  { background-color: #FFE9DC; }

.quick-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  white-space: nowrap;
}

/* ==========================================================================
   5. Footer Section (Original single-row flex layout restored)
   ========================================================================== */
.footer-card {
  margin-top: 2rem;
  margin-bottom: 3rem; /* 하단 잘림 방지용 여백 */
  background-color: #FDF8F4;
  border-radius: var(--radius-card);
  padding: 2.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: none;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
}

.footer-logo-default,
.footer-logo.default-logo {
  opacity: 1;
}

.footer-logo-hover,
.footer-logo.hover-logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.footer-logo-link:hover .footer-logo-default,
.footer-logo-link:hover .default-logo {
  opacity: 0;
}

.footer-logo-link:hover .footer-logo-hover,
.footer-logo-link:hover .hover-logo {
  opacity: 1;
  transform: scale(1.03);
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.footer-link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-link-col a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--color-text-body);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-yt     { background-color: #FF0000; }
.social-insta  { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-x      { background-color: #0F1419; }
.social-tiktok { background-color: #000000; }

.footer-character-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-character-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
  transition: transform 0.25s ease;
}

.footer-character-img:hover {
  transform: translateY(-3px) scale(1.03);
}
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.footer-character-img:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ==========================================================================
   6. Responsive Layout Media Queries
   ========================================================================== */

/* Laptop & Large Tablets */
@media (max-width: 1120px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-content {
    top: 20%;
    left: 4.5%;
    max-width: 440px;
  }
  .navbar {
    padding: 1rem 1.75rem 0;
  }
  .nav-logo {
    height: 92px;
  }
  .quick-bar-wrapper {
    bottom: 1.25rem;
  }
  .quick-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .quick-label {
    font-size: 0.78rem;
  }
}

/* Tablet Layout */
@media (max-width: 900px) {
  .hero-section {
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    padding: 2.5rem 1.75rem 1.5rem;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .quick-bar-wrapper {
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem 1.25rem;
  }
  .quick-bar {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1rem;
  }
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }
  .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 640px) {
  body {
    padding: 0.75rem;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-subtitle {
    font-size: 0.98rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .footer-links-group {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

/* Standalone White Navbar for subpages (Attached to very top with zero gap) */
.navbar-standalone {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 2.5rem;
  background-color: #FFFFFF;
  border-radius: 0; /* 둥근 모서리 제거 -> 상단 끝에 밀착 */
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #F0EAE1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Larger, clear white header logo */
.navbar-standalone .nav-logo {
  height: 68px; /* 요청하신 대로 로고 크기를 시원하고 보기 좋게 키움 */
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.navbar-standalone .nav-logo:hover {
  transform: scale(1.02);
}

/* Menu items & Active About state (matching mockup) */
.navbar-standalone .nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #2D3748;
  padding: 0.35rem 0.75rem;
  transition: all 0.2s ease;
}

.navbar-standalone .nav-links a.active {
  color: #4A883C;
  font-weight: 800;
  background-color: #F4F9F2;
  border-radius: 12px;
  border-bottom: 2.5px solid #4A883C; /* 초록색 밑줄 연출 */
  padding: 0.35rem 0.9rem;
}

/* Main About Page Container */
.about-page-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

/* Story section overlaps directly OVER the illustration area with true see-through transparency */
.about-hero-section + .about-story-section {
  margin-top: -7.25rem;
  position: relative;
  z-index: 10;
}

.about-story-section {
  /* 상단을 완전 투명(rgba 0)으로 만들어 뒤쪽 일러스트 배경이 100% 선명하고 투명하게 훤히 비치도록 수정 */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 253, 249, 0.6) 20%, #FFFDF9 50%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

/* Image Placeholder Common Style */
.img-placeholder {
  background: linear-gradient(135deg, #F0F4EC 0%, #E6EFE2 100%);
  border: 2px dashed #B8D4AD;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #55774B;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.img-placeholder:hover {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #E9F2E4 0%, #DFECDA 100%);
  transform: translateY(-2px);
}

.placeholder-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.placeholder-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #385E2F;
  margin-bottom: 0.25rem;
}

.placeholder-subtitle {
  font-size: 0.85rem;
  color: #6B8E61;
}

/* Hero Section - Sharp Rectangle */
.about-hero-section {
  position: relative;
  border-radius: 0;
  padding: 3.5rem 2.5rem 0; /* 하단 패딩 0 -> 일러스트 바닥면이 섹션 최하단까지 밀착 */
  box-shadow: none;
  border-bottom: none;
  overflow: hidden;
  background-color: #FFFDF9;
  margin-bottom: 0;
  width: 100%;
  aspect-ratio: 1691 / 930;
}

/* Background image sticks to right edge with zero gap */
.about-hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
}

.about-hero-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 2.5rem;
  align-items: start;
}

.about-hero-intro {
  margin-left: 30px;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #2D3748;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.clover-sprout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.about-hero-sprout-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.about-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.75rem;
}

.about-description {
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.6;
}

.highlight-green { color: #4A883C; font-weight: 700; }
.highlight-blue { color: #3B82F6; font-weight: 700; }
.highlight-pink { color: #EC4899; font-weight: 700; }

/* Our Promise Card with Glassmorphism Transparency */
.our-promise-card {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.promise-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.promise-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2D3748;
}

.promise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.promise-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.865rem;
  font-weight: 600;
  color: #4A5568;
}

.list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.promise-list-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-sprout .promise-list-img {
  width: 42px;
  height: 42px;
}

.icon-heart .promise-list-img {
  width: 38px;
  height: 38px;
}

.icon-star .promise-list-img {
  width: 40px;
  height: 40px;
}

.icon-flower .promise-list-img {
  width: 38px;
  height: 38px;
}

/* Hero Artwork Placeholder */
.about-hero-art-wrapper {
  width: 100%;
}

.hero-artwork-placeholder {
  min-height: 380px;
  border-radius: 28px;
}

/* Section Common Title */
.section-title-wrapper {
  margin-bottom: 0.75rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center !important;
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2D3748;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.title-clover {
  font-size: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4A5568;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.text-heartwarming {
  color: #E56A6A;
  font-weight: 700;
}

/* Our Story Section */
.about-story-section {
  /* 투명도를 살짝 줄여 뒤쪽 일러스트 배경이 은은하고 고급스럽게 비치도록 연출 */
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.45) 0%, rgba(255, 253, 249, 0.85) 30%, #FFFDF9 60%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.story-timeline-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.story-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid #F0EAE1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.25s ease;
}

.story-card:hover {
  transform: translateY(-4px);
}

.story-img-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.story-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.story-img-placeholder {
  height: 140px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.story-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.story-card-desc {
  font-size: 0.82rem;
  color: #718096;
  margin-bottom: 0;
  line-height: 1.4;
}

.story-year-badge {
  display: inline-block;
  background: #EDF2F7;
  color: #4A5568;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.85rem;
  border-radius: 12px;
  margin-top: auto;
}

.story-year-badge.active-year {
  background: #E6F4E4;
  color: var(--color-primary);
}

.story-arrow {
  font-size: 1.5rem;
  color: #CBD5E0;
  font-weight: 700;
}

/* What We Value Section */
.about-values-section {
  padding: 1rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  min-height: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border: none;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.value-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  transform: scale(1.08);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.value-card:hover .value-card-img {
  opacity: 1;
  transform: scale(1.13);
}

.value-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.55rem 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: calc(100% - 1rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.value-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.value-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.value-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.2rem;
}

.value-desc {
  font-size: 0.8rem;
  color: #2D3748;
  font-weight: 600;
  line-height: 1.35;
}

/* How Pomogochi Helps Section */
.about-helps-section {
  background: #FFFDF9;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.helps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.25rem;
  border: 1px solid #F0EAE1;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.25s ease;
}

.help-card:hover {
  transform: translateY(-4px);
}

.help-img-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.help-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.help-img-placeholder {
  height: 150px;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.help-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.4rem;
}

.help-desc {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.4;
}

/* A Message from the Creators Full Banner */
.about-creators-message {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
  line-height: 0;
}

.creators-full-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.3s ease;
}

.about-creators-message:hover .creators-full-banner {
  transform: scale(1.01);
}

.sig-with-love {
  font-style: italic;
  color: #718096;
}

.sig-team {
  font-weight: 800;
  color: #2D3748;
}

.creators-artwork-placeholder {
  height: 220px;
  border-radius: 24px;
}

/* Responsive adjustments for About Page */
@media (max-width: 1024px) {
  .about-hero-header {
    grid-template-columns: 1fr;
  }
  .story-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-arrow {
    display: none;
  }
  .values-grid, .helps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .message-card-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .story-timeline-grid, .values-grid, .helps-grid {
    grid-template-columns: 1fr;
  }
  .about-title {
    font-size: 2.4rem;
  }
  .about-hero-section, .about-story-section, .about-helps-section, .about-creators-message {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Buddies (Mascots) Page Specific Styles
   ========================================================================== */
.buddies-page-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 2rem;
}

/* Hero Section */
.buddies-hero-section {
  position: relative;
  background: #FFFDF9;
  border-radius: 0;
  padding: 4rem 2.5rem 2.5rem;
  border-bottom: 1px solid #F0EAE1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1774 / 887;
  min-height: 560px;
}

.buddies-hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.buddies-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.buddies-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 820px;
  margin: 60px auto 0;
}

.buddies-hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.buddies-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.title-sprout {
  font-size: 2.5rem;
}

.buddies-subtitle {
  font-size: 1.25rem;
  color: #4A5568;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.buddies-tagline {
  font-size: 0.95rem;
  color: #718096;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Category Filter Tabs Bar */
.category-tabs-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.category-tabs {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  max-width: 100%;
}

.tab-btn {
  background: transparent;
  border: none;
  border-radius: 9999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2D3748;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: rgba(244, 248, 243, 0.9);
  color: #385E2F;
}

.tab-btn.active {
  background: #5B9E4B;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(91, 158, 75, 0.35);
}

.tab-icon {
  font-size: 1rem;
}

.tab-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Main Characters Section */
.main-characters-section {
  padding: 0 1rem;
}

.main-characters-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0 0.5rem;
}

.main-characters-banner picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-characters-banner-img {
  max-width: 800px;
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.05));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: -webkit-optimize-contrast;
}

.main-characters-banner-img:hover {
  transform: scale(1.02);
}

/* All Buddies Grid Section */
.all-buddies-section {
  padding: 0 1rem;
}

.buddies-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 0.4rem;
}

.buddy-card {
  background: #FFFDFB;
  border: 1.5px solid #F3EDE3;
  border-radius: 22px;
  padding: 1.25rem 1.05rem 1.1rem;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.025);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 225px;
}

.buddy-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: #E2D7C7;
  box-shadow: 0 10px 24px rgba(180, 150, 110, 0.12);
}

.buddy-img-wrapper {
  height: 135px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.2rem;
  position: relative;
  background: transparent;
  border-radius: 0;
}

.buddy-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: -webkit-optimize-contrast;
}

.buddy-card:hover .buddy-img {
  transform: translateY(-4px) scale(1.08);
}

.buddy-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
}

.buddy-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.buddy-name {
  font-size: 1rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.2;
}

.buddy-desc {
  font-size: 0.73rem;
  color: #718096;
  line-height: 1.3;
  font-weight: 500;
  min-height: 2.1rem;
}

.buddy-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.badge-peach  { background: #FFF0EB; border: 1px solid #FFE0D6; }
.badge-pink   { background: #FFF0F5; border: 1px solid #FFE0EC; }
.badge-blue   { background: #EDF7FF; border: 1px solid #D6EEFF; }
.badge-green  { background: #EBF8EE; border: 1px solid #D2F2D9; }
.badge-yellow { background: #FFFBEB; border: 1px solid #FEF08A; }
.badge-purple { background: #F3E8FF; border: 1px solid #E9D8FD; }

/* Mystery Hidden Buddy Card Styles */
.mystery-card {
  background: linear-gradient(135deg, #FFF5F5 0%, #FAF5FF 100%);
  border: 2px dashed #C084FC;
}

.mystery-card:hover {
  border-color: #9333EA;
  box-shadow: 0 12px 28px rgba(147, 51, 234, 0.2);
}

.mystery-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.mystery-lock-icon {
  font-size: 1.5rem;
  animation: bounce-lock 2s infinite ease-in-out;
}

.mystery-question {
  font-size: 2.2rem;
  font-weight: 900;
  color: #7E22CE;
  line-height: 1;
}

.mystery-title {
  color: #581C87;
}

.mystery-desc {
  color: #6B21A8;
  font-weight: 600;
}

@keyframes bounce-lock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Bottom Banner Section */
.buddies-bottom-banner {
  position: relative;
  border-radius: 32px;
  padding: 3rem 3.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  display: flex;
  align-items: center;
  border: 1px solid #F0EAE1;
  background: #FFFDF9;
}

.buddies-bottom-banner-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.buddies-bottom-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.85);
}

.banner-subtitle {
  font-size: 1.1rem;
  color: #4A5568;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.btn-youtube-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5B9E4B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(91, 158, 75, 0.3);
  transition: all 0.2s ease;
}

.btn-youtube-banner:hover {
  background: #4A883C;
  transform: translateY(-2px);
}

.banner-artwork-placeholder {
  height: 200px;
  border-radius: 24px;
}

/* Responsive Styles for Buddies Page */
@media (max-width: 1200px) {
  .buddies-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .main-characters-grid, .banner-inner {
    grid-template-columns: 1fr;
  }
  .buddies-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-character-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .buddies-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buddies-title {
    font-size: 2.4rem;
  }
  .buddies-hero-section, .buddies-bottom-banner {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Features Page Specific Styles (Matching Attachment Design Concept)
   ========================================================================== */
.features-page-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 3rem;
}

/* 1. Hero Section */
.features-hero-section {
  background: #FFFDF9;
  border-radius: 0;
  padding: 3.5rem 2.5rem 2.5rem;
  border-bottom: 1px solid #F0EAE1;
}

.features-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.features-hero-intro {
  margin-left: 30px;
}

.features-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-subtitle {
  font-size: 1.15rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-buttons-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-green-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5B9E4B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 0.8rem 1.6rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(91, 158, 75, 0.3);
  transition: all 0.25s ease;
}

.btn-green-bubble:hover {
  background: #4A883C;
  transform: translateY(-2px);
}

.btn-white-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #2D3748;
  border: 1.5px solid #E2E8F0;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.btn-white-play:hover {
  border-color: #CBD5E0;
  transform: translateY(-2px);
}

/* Hero Circle Dial Visual Image */
.features-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.features-hero-dial-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 32px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.04));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: -webkit-optimize-contrast;
}

.features-hero-dial-img:hover {
  transform: scale(1.03);
}

/* 2. Stats Bar Section */
.features-stats-bar {
  padding: 0 1rem;
}

.stats-chips-wrapper {
  background: #FFFFFF;
  border: 1.5px solid #F0EAE1;
  border-radius: 24px;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-yellow { background: #FEF9C3; }
.stat-green  { background: #E7F3E2; }
.stat-star   { background: #FFFBEB; }
.stat-sprout { background: #F0FDF4; }

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: #718096;
  font-weight: 600;
}

/* 3. Core Features Bento Grid Section */
.core-features-section {
  padding: 0 1rem;
}

.badge-core {
  background: #E7F3E2;
  color: #3B722E;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.bento-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  background: #FFFDF9;
  border: 1.5px solid #F3EDE3;
  border-radius: 26px;
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  min-height: 380px;
}

.bento-card:hover {
  border-color: #E2D7C7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.bento-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.tag-green  { background: #E7F3E2; color: #3B722E; }
.tag-peach  { background: #FFEAD9; color: #C2500C; }
.tag-purple { background: #F3E8FF; color: #6B21A8; }
.tag-blue   { background: #EBF8FF; color: #2B6CB0; }
.tag-red    { background: #FFE4E6; color: #E11D48; }
.tag-mint   { background: #E6FFFA; color: #0D9488; }

.bento-badge-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #718096;
}

.bento-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2D3748;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.bento-desc {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.bento-ui-preview {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 18px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.focus-widget-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #F4F9F2;
  border: 1px solid #E2EEDD;
  padding: 0.75rem 0.6rem;
}

.focus-timer-box-img {
  height: 102px;
  width: auto;
  max-width: 58%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.05));
}

.focus-widget-img {
  height: 125px;
  width: auto;
  max-width: 45%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.06));
}

.bento-card-bg-rest {
  position: relative;
  border-color: #FED7AA;
  overflow: hidden;
}

.bento-card-bg-rest::before {
  content: '';
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  bottom: 55px;
  background-image: url('assets/images/feature-rest-relax.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: blur(0.8px);
  z-index: 1;
  pointer-events: none;
}

.bento-card-bg-rest > * {
  position: relative;
  z-index: 2;
}

.rest-relax-preview-transparent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 253, 249, 0.35);
  border: 1px solid rgba(254, 215, 170, 0.45);
  padding: 0.75rem 0.6rem;
  backdrop-filter: blur(4px);
}

.rest-widget-img-1 {
  height: 110px;
  width: auto;
  max-width: 48%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(234, 88, 12, 0.12));
}

.rest-widget-img-2 {
  height: 110px;
  width: auto;
  max-width: 48%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(234, 88, 12, 0.12));
}

.bento-card-bg-twobeat {
  position: relative;
  overflow: hidden;
}

.bento-card-bg-twobeat::before {
  content: '';
  position: absolute;
  bottom: 45px;
  left: 67%;
  transform: translateX(-50%);
  width: 90%;
  height: 215px;
  background-image: url('assets/images/feature-twobeat-widget.webp');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(107, 33, 168, 0.12));
}

.bento-card-bg-twobeat > * {
  position: relative;
  z-index: 2;
}

.twobeat-widget-spacer {
  height: 140px;
  background: transparent;
  border: none;
  margin-bottom: 1.2rem;
}

.bento-card-bg-room {
  position: relative;
  overflow: hidden;
}

.bento-card-bg-room::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 61%;
  transform: translateX(-50%);
  width: 95%;
  height: 280px;
  background-image: url('assets/images/feature-room-decor-widget.webp');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(43, 108, 176, 0.1));
}

.bento-card-bg-room > * {
  position: relative;
  z-index: 2;
}

.room-widget-spacer {
  height: 140px;
  background: transparent;
  border: none;
  margin-bottom: 1.2rem;
}

.bento-card-bg-collect {
  position: relative;
  overflow: hidden;
}

.bento-card-bg-collect::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 260px;
  background-image: url('assets/images/feature-collection-diary-widget.webp');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.70;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(194, 80, 12, 0.1));
}

.bento-card-bg-collect > * {
  position: relative;
  z-index: 2;
}

.collect-widget-spacer {
  height: 140px;
  background: transparent;
  border: none;
  margin-bottom: 1.2rem;
}

.bento-card-bg-tools {
  position: relative;
  overflow: hidden;
}

.bento-card-bg-tools::before {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 210px;
  background-image: url('assets/images/feature-smart-tools-widget.webp');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(59, 114, 46, 0.1));
}

.bento-card-bg-tools > * {
  position: relative;
  z-index: 2;
}

.tools-widget-spacer {
  height: 140px;
  background: transparent;
  border: none;
  margin-bottom: 1.2rem;
}

.board-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  width: 100%;
}

.board-col {
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  color: #718096;
}

.bento-tags-footer {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.chip-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.chip-green  { background: #E7F3E2; color: #3B722E; }
.chip-peach  { background: #FFEAD9; color: #C2500C; }
.chip-purple { background: #F3E8FF; color: #6B21A8; }
.chip-blue   { background: #EBF8FF; color: #2B6CB0; }

/* 4. Works Everywhere Banner Section */
.works-everywhere-section {
  padding: 0 1rem;
}

.works-everywhere-banner {
  position: relative;
  overflow: hidden;
  background: #FBF8F1;
  border: 1.5px solid #E8EDE0;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.works-everywhere-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('assets/images/feature-works-everywhere-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.works-everywhere-banner > * {
  position: relative;
  z-index: 2;
}

.works-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.works-desc {
  font-size: 0.98rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.btn-chrome-add {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #5B9E4B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(91, 158, 75, 0.3);
}

.banner-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.preview-popup-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 0.85rem 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-head {
  font-size: 0.72rem;
  font-weight: 800;
  color: #718096;
  margin-bottom: 0.2rem;
  text-align: center;
}

.preview-popup-img {
  display: block;
  width: 100%;
  height: 75px;
  object-fit: contain;
  margin-top: 0.35rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
}

/* 5. Buddy Strip & Slogan Section */
.buddy-strip-section {
  padding: 0 1rem;
  text-align: center;
  margin-top: -1.75rem;
  margin-bottom: -1.25rem;
}

.buddy-strip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.strip-buddy-item {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1.5px solid #F0EAE1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.25s ease;
}

.strip-buddy-item:hover {
  transform: translateY(-4px) scale(1.1);
}

.features-slogan {
  font-size: 1.05rem;
  font-weight: 700;
  color: #4A5568;
  margin: 0;
}

/* ==========================================================================
   6. FAQ Page Styles
   ========================================================================== */
.faq-page-container {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  margin: 0 auto;
}

.faq-hero-section {
  position: relative;
  border-radius: 0;
  padding: 5.5rem 3rem 0;
  overflow: hidden;
  background-color: #FFFDF9;
  margin-bottom: 2.5rem;
  width: 100%;
  aspect-ratio: 1691 / 930;
  box-shadow: none;
}

.faq-hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.faq-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.faq-hero-header {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2D3748;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
}

.faq-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.5rem;
}

.faq-description {
  font-size: 1.02rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.faq-search-wrapper {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

/* Glassmorphic Quick Card matching about.html our-promise-card */
.faq-quick-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quick-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.quick-card-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #2D3748;
}

.quick-icon {
  font-size: 1.5rem;
}

.quick-topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quick-topics-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4A5568;
}

.topic-icon {
  font-size: 1.25rem;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #5B9E4B;
}

.faq-search-input {
  width: 100%;
  padding: 1.1rem 1.25rem 1.1rem 3.2rem;
  border-radius: 9999px;
  border: 2px solid #E2E8F0;
  background: #FFFFFF;
  font-size: 0.98rem;
  font-family: inherit;
  color: #2D3748;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.faq-search-input:focus {
  border-color: #5B9E4B;
  box-shadow: 0 6px 24px rgba(91, 158, 75, 0.18);
}

/* Category Tabs */
/* FAQ Hero Tabs Positioning matching buddies.html with Glassmorphism Transparency */
.faq-hero-tabs-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin-top: 0;
  display: flex;
  justify-content: center;
  width: auto;
  max-width: 92%;
}

.faq-hero-tabs-wrapper .category-tabs {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.faq-list-section {
  margin-top: 3.5rem;
}

.faq-list-section {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.faq-contact-section {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2D3748;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.faq-tab-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.faq-q-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 0.45rem;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.faq-tab-btn:hover {
  background: rgba(244, 248, 243, 0.92);
  border-color: #C3E6B5;
  color: #3B722E;
}

.faq-tab-btn.active {
  background: #5B9E4B;
  border-color: #5B9E4B;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(91, 158, 75, 0.35);
}

/* Accordion List */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid #EDF2F7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: #CBD5E0;
}

.faq-item.active {
  border-color: #BEE3F8;
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2D3748;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.faq-q-icon {
  font-size: 1.25rem;
}

.faq-arrow-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #A0AEC0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-arrow-icon {
  transform: rotate(45deg);
  color: #3182CE;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.4rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.65;
  border-top: 1px solid #EDF2F7;
  padding-top: 0.9rem;
}

.faq-no-results {
  text-align: center;
  padding: 3rem 1rem;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1.5px dashed #CBD5E0;
  margin-top: 1rem;
}

.no-results-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.faq-no-results h3 {
  font-size: 1.2rem;
  color: #2D3748;
  margin-bottom: 0.4rem;
}

.faq-no-results p {
  font-size: 0.9rem;
  color: #718096;
}

/* Contact Banner */
.faq-contact-section {
  margin-top: 2.5rem;
  margin-bottom: 2rem; /* 32px gap to footer */
  width: 100%;
}

.faq-page-container + .footer-card {
  margin-top: 0;
}

.faq-contact-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F0FDF4 0%, #E6FFFA 100%);
  border: 1.5px solid #C6F6D5;
  border-radius: 28px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(72, 187, 120, 0.08);
  width: 100%;
}

.faq-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('assets/images/faq-contact-banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
}

.faq-contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1A365D;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

.contact-card-desc {
  font-size: 0.98rem;
  color: #2D3748;
  font-weight: 600;
  max-width: 620px;
  margin: 0 auto 1.2rem;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

.contact-btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5B9E4B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(91, 158, 75, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary-green:hover {
  background: #4A883C;
  transform: translateY(-2px);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #2D3748;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-secondary-white:hover {
  border-color: #CBD5E0;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .bento-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-chips-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-everywhere-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .features-hero-grid {
    grid-template-columns: 1fr;
  }
  .bento-features-grid {
    grid-template-columns: 1fr;
  }
  .banner-preview-cards {
    grid-template-columns: 1fr;
  }
  .features-title {
    font-size: 2.5rem;
  }
}

/* ==========================================
   Two-Beat Thinking Page Styles
   ========================================== */

/* Navbar Play App Button */
.btn-play-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3B7C2B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(59, 124, 43, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-play-app:hover {
  background: #2E6221;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 124, 43, 0.4);
}

/* Page Layout Container */
.tbt-page-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 0 0 1.2rem;
}

.tbt-page-container + .footer-card {
  margin-top: 1.2rem;
}

/* Helper Text Classes */
.text-green-bold {
  color: #2F6B22;
  font-weight: 800;
}

/* Section Shared Layout Container */
.tbt-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Section Header Shared */
.tbt-sec-header {
  margin-bottom: 2rem;
}

.tbt-num {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #437836;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.tbt-sec-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.tbt-sec-desc {
  font-size: 1.1rem;
  color: #4A5568;
  line-height: 1.6;
  font-weight: 500;
}

.tbt-hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 3.5rem 3rem 0;
  background-color: #FFFDF9;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
  width: 100%;
  aspect-ratio: 1691 / 930;
  display: flex;
  align-items: flex-start;
}

.tbt-hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tbt-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.tbt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: 20px;
}

.tbt-hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #1A202C;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.tbt-hero-subtitle {
  font-size: 1.35rem;
  line-height: 1.45;
  color: #2D3748;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.tbt-hero-desc {
  font-size: 1.05rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.tbt-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* Buttons */
.btn-tbt-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #3B7C2B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.95rem 1.8rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(59, 124, 43, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tbt-primary:hover {
  background: #2E6221;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 124, 43, 0.45);
}

.btn-tbt-primary .arrow-icon {
  width: 20px;
  height: 20px;
}

.btn-tbt-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #F7FAFC;
  color: #2D3748;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  border: 1.5px solid #E2E8F0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-tbt-secondary:hover {
  background: #EDF2F7;
  border-color: #CBD5E0;
  color: #1A202C;
}

.github-icon {
  width: 18px;
  height: 18px;
}

/* Hero Visual Box */
.tbt-hero-visual-container {
  display: flex;
  justify-content: center;
}

.tbt-hero-image-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  background: linear-gradient(135deg, #F0FFF4 0%, #E6FFFA 100%);
  border: 2px solid #C6F6D5;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(72, 187, 120, 0.12);
  text-align: center;
}

.tbt-hero-img-placeholder {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border-radius: 20px;
}

.tbt-hero-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.badge-item {
  font-size: 0.85rem;
  font-weight: 800;
  color: #2F6B22;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-item::before {
  content: '✓';
  color: #38A169;
}

/* ------------------------------------------
   Section 01: Why another productivity method? (Concept Layout)
   ------------------------------------------ */
.tbt-sec01-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tbt-sec01-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-sec01-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.tbt-compare-card {
  background: #FFFDF7;
  border: 1.5px solid #F3ECE1;
  border-radius: 20px;
  padding: 1.4rem 0.6rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 185px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.tbt-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.compare-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2D3748;
}

.compare-icon-wrapper {
  font-size: 2.4rem;
  margin: 0.4rem 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  display: block;
}

.compare-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.compare-tag {
  font-size: 0.82rem;
  font-weight: 800;
  color: #2D3748;
}

.down-arrow {
  font-size: 0.75rem;
  color: #A0AEC0;
  font-weight: 900;
}

/* Highlight Card (Card 4: Two-Beat Thinking) */
.tbt-card-highlight {
  background: #F0FFF4;
  border: 1.5px solid #C6F6D5;
  box-shadow: 0 6px 18px rgba(56, 161, 105, 0.12);
  padding-top: 0;
}

.highlight-badge {
  background: #3B7C2B;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0;
  width: 100%;
  text-align: center;
  border-radius: 0 0 10px 10px;
  margin-bottom: 0.8rem;
}

.tag-highlight {
  color: #2F6B22;
  font-weight: 800;
}

.arrow-highlight {
  color: #38A169;
}

/* ------------------------------------------
   Section 02: Core of Two-Beat Thinking (Concept Layout)
   ------------------------------------------ */
.tbt-sec02-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tbt-sec02-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-sec02-banner {
  background: linear-gradient(135deg, #FFFDF7 0%, #FDFBF4 100%);
  border-radius: 28px;
  border: 1.5px solid #F0EAE1;
  padding: 2.2rem 3rem 2rem 2.2rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.tbt-core-flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: calc(100% - 90px);
}

.tbt-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
}

/* 3개 원형 카드 큼직하게 렌더링 */
.tbt-step-card {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.tbt-step-card:hover {
  transform: scale(1.05);
}

.step-1 {
  background: #EBF8FF;
  border: 2px solid #BEE3F8;
}

.step-2 {
  background: #FFFAF0;
  border: 2px solid #FEEBC8;
}

.step-3 {
  background: #F0FFF4;
  border: 2px solid #C6F6D5;
}

.step-num-circle {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.step-1 .step-num-circle { color: #3182CE; }
.step-2 .step-num-circle { color: #DD6B20; }
.step-3 .step-num-circle { color: #38A169; }

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.step-desc {
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  font-weight: 500;
}

.step-time-pill {
  font-size: 0.7rem;
  font-weight: 800;
  background: #FFFFFF;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.step-1 .step-time-pill { color: #2B6CB0; border: 1px solid #E2E8F0; }
.step-2 .step-time-pill { color: #C05621; border: 1px solid #E2E8F0; }
.step-3 .step-time-pill { color: #2F6B22; border: 1px solid #E2E8F0; }

.step-connector {
  font-size: 1.4rem;
  color: #38A169;
  font-weight: 900;
}

.tbt-cycle-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}

.cycle-curve-svg {
  width: 100%;
  max-width: 440px;
  height: 38px;
}

.cycle-text {
  font-size: 0.92rem;
  font-weight: 800;
  color: #2D3748;
}

/* 드래곤 캐릭터 고정 위치 및 비율 조절 */
.dragon-char-img {
  position: absolute;
  right: -25px;
  bottom: -8px;
  width: 155px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
  z-index: 3;
}

.dragon-char-img:hover {
  transform: translateY(-6px) rotate(3deg);
}

/* ------------------------------------------
   Section 03: Seven Principles (Concept Layout)
   ------------------------------------------ */
.tbt-sec03-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tbt-sec03-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-principles-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
}

.tbt-principle-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.3rem 0.5rem 1.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.tbt-principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E0;
}

.p-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.p-icon {
  width: 28px;
  height: 28px;
}

.p-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.p-icon-img.p-icon-lg {
  width: 54px;
  height: 54px;
}

.p-blue { background: #EBF8FF; color: #3182CE; }
.p-orange { background: #FFFAF0; color: #DD6B20; }
.p-purple { background: #FAF5FF; color: #805AD5; }
.p-green { background: #F0FFF4; color: #38A169; }
.p-orange-dark { background: #FFF5F0; color: #C05621; }
.p-pink { background: #FFF5F7; color: #D53F8C; }
.p-blue-dark { background: #EBF8FF; color: #2B6CB0; }

.c-blue .p-title { color: #3182CE; }
.c-orange .p-title { color: #DD6B20; }
.c-purple .p-title { color: #805AD5; }
.c-green .p-title { color: #38A169; }
.c-orange-dark .p-title { color: #C05621; }
.c-pink .p-title { color: #D53F8C; }
.c-blue-dark .p-title { color: #2B6CB0; }

.p-title {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.p-desc {
  font-size: 0.72rem;
  color: #718096;
  line-height: 1.35;
  font-weight: 500;
}

/* ------------------------------------------
   Section 04: How it Works in the App
   ------------------------------------------ */
.tbt-sec04-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tbt-sec04-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-app-flow-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tbt-app-flow-wrapper:hover {
  transform: translateY(-4px);
}

.tbt-app-flow-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.05));
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

/* ------------------------------------------
   Section 05: Powerful Framework Library (Concept Screenshot Layout)
   ------------------------------------------ */
.tbt-sec05-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2.2rem;
  align-items: center;
}

.tbt-sec05-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-frameworks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.tbt-fw-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}

.tbt-fw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #CBD5E0;
}

.fw-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  position: relative;
  background: #F8FAFC;
}

.fw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  image-rendering: -webkit-optimize-contrast;
}

.tbt-fw-card:hover .fw-card-img {
  transform: scale(1.06);
}

.fw-card-body {
  padding: 0.85rem 0.5rem 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  background: #FFFFFF;
  flex: 1;
}

.fw-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.25;
}

.fw-desc {
  font-size: 0.72rem;
  color: #718096;
  font-weight: 500;
  line-height: 1.35;
}

.card-more-coming {
  border-style: dashed;
  border-color: #CBD5E0;
}

/* ------------------------------------------
   Section 06: Build on the Method with Open Skills (Concept Layout)
   ------------------------------------------ */
.tbt-sec06-layout {
  display: grid;
  grid-template-columns: 312px 1fr auto;
  gap: 1.8rem;
  align-items: center;
}

.tbt-sec06-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-sec06-flow-cards {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tbt-flow-card {
  width: 140px;
  height: 155px;
  border-radius: 20px;
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.28s ease;
  position: relative;
}

.tbt-flow-card:hover {
  transform: translateY(-4px);
}

.card-method {
  background: #FFFDF7;
  border: 1.5px solid #F0EAE1;
}

.card-github {
  background: #F8F9FE;
  border: 1.5px solid #E2E8F0;
}

.card-app {
  background: #FFFDF7;
  border: 1.5px solid #F0EAE1;
}

.flow-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
  display: block;
}

.gh-cat-icon {
  width: 36px;
  height: 36px;
  color: #1A202C;
}

.app-sprout-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.flow-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #718096;
  display: block;
}

.flow-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.2;
}

.flow-card-sub {
  font-size: 0.68rem;
  color: #A0AEC0;
  display: block;
  margin-top: 0.2rem;
}

.flow-dash-arrow {
  font-size: 1.3rem;
  color: #38A169;
  font-weight: 900;
}

.tbt-sec06-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.tbt-github-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gh-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A202C;
}

.gh-checklist {
  list-style: none;
  padding: 0;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #4A5568;
}

.check-mark {
  color: #38A169;
  font-weight: 900;
}

.btn-gh-repo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #3B7C2B;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(59, 124, 43, 0.25);
}

.btn-gh-repo .arrow-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gh-repo:hover {
  background: #2E6221;
  transform: translateY(-2px);
}

.tbt-robot-character {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-char-img {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}

/* ------------------------------------------
   Section 07: Buddies by Your Side (Concept Layout)
   ------------------------------------------ */
.tbt-sec07-banner {
  background: linear-gradient(135deg, #FFFDF7 0%, #F9F6EE 100%);
  border-radius: 28px;
  border: 1.5px solid #F0EAE1;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.tbt-sec07-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tbt-buddies-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
}

.tbt-buddy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: 1;
}

.tbt-buddy-item:hover {
  transform: translateY(-6px) scale(1.08);
}

.buddy-img-box {
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
}

.buddy-char-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
  image-rendering: -webkit-optimize-contrast;
}

.tbt-buddy-item .buddy-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: #2D3748;
  text-align: center;
  white-space: nowrap;
}

.buddy-more .buddy-name {
  color: #38A169;
}

/* ------------------------------------------
   Section 08: Ready Banner (Wide & Compact Layout)
   ------------------------------------------ */
.tbt-sec-08 {
  padding-bottom: 0;
}

.tbt-banner-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #EBF8FF 0%, #F0FFF4 100%);
  border: 1.5px solid #D2E9D4;
  padding: 1.6rem 3rem;
  min-height: 170px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(59, 124, 43, 0.06);
}

.tbt-banner-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tbt-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  image-rendering: -webkit-optimize-contrast;
}

.tbt-banner-content {
  position: relative;
  z-index: 2;
  max-width: 624px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.35rem;
}

.tbt-banner-content .tbt-num {
  font-size: 1rem;
  font-weight: 800;
  color: #38A169;
  margin-bottom: 0;
}

.tbt-banner-content .banner-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1A202C;
  line-height: 1.18;
}

.tbt-banner-content .banner-desc {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.4;
  font-weight: 500;
}

.tbt-banner-content .banner-action {
  margin-top: 0.4rem;
}

.tbt-banner-content .btn-banner {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}

/* ------------------------------------------
   Responsive Styles for Two-Beat Thinking
   ------------------------------------------ */
@media (max-width: 992px) {
  .tbt-hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tbt-hero-actions {
    align-items: center;
  }
  .tbt-sec01-layout,
  .tbt-sec02-layout {
    grid-template-columns: 1fr;
  }
  .tbt-sec02-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .tbt-sec01-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tbt-steps-row {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
  }
  .tbt-sec03-layout {
    grid-template-columns: 1fr;
  }
  .tbt-principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tbt-sec04-layout {
    grid-template-columns: 1fr;
  }
  .tbt-sec05-layout {
    grid-template-columns: 1fr;
  }
  .tbt-frameworks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tbt-sec07-banner {
    grid-template-columns: 1fr;
  }
  .tbt-buddies-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .tbt-sec06-layout {
    grid-template-columns: 1fr;
  }
  .tbt-sec06-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tbt-skills-flow {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .tbt-banner-card {
    padding: 2.5rem 1.8rem;
  }
  .tbt-banner-bg-img {
    opacity: 0.35;
  }
}

@media (max-width: 600px) {
  .tbt-hero-title {
    font-size: 2.8rem;
  }
  .tbt-sec01-grid,
  .tbt-principles-grid,
  .tbt-app-flow-cards,
  .tbt-frameworks-grid {
    grid-template-columns: 1fr;
  }
  .tbt-buddies-row {
    justify-content: center;
  }
}

/* ==========================================================================
   Scroll to Top Floating Button
   ========================================================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #F0EAE1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  border-color: #38A169;
}

.scroll-top-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   Privacy Policy Page Styles
   ========================================================================== */
.privacy-page-container {
  padding-top: 0;
  padding-bottom: 1.5rem;
  width: 100%;
  margin: 0 auto;
}

.privacy-hero-section {
  position: relative;
  border-radius: 0;
  padding: 1.25rem 2rem 7rem;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF9 0%, #F7FAF5 100%);
  margin-bottom: 3rem;
  width: 100%;
  text-align: center;
  box-shadow: none;
  border-bottom: 1px solid #EAE5D9;
}

.privacy-hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.privacy-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  opacity: 0.9;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #276749;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(56, 161, 105, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.privacy-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.8);
}

.privacy-tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95), 0 0 15px rgba(255, 255, 255, 0.8);
}

.privacy-last-updated {
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 0.85rem;
  color: #4A5568;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.privacy-content-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.privacy-card {
  background: #FFFFFF;
  border: 1.5px solid #F0EAE1;
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1.5px dashed #EDF2F7;
}

.privacy-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.privacy-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2D3748;
  margin: 0;
}

.privacy-card-body {
  font-size: 1.025rem;
  line-height: 1.7;
  color: #4A5568;
}

.privacy-card-body p {
  margin-bottom: 1rem;
}

.privacy-card-body p:last-child {
  margin-bottom: 0;
}

.privacy-card-body ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding: 0;
}

.privacy-card-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-highlight-box {
  background: #F7FAFC;
  border-left: 4px solid #38A169;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.25rem 0;
  font-weight: 500;
  color: #2D3748;
}

.privacy-perm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.privacy-perm-item {
  background: #FAFAFA;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem;
}

.privacy-perm-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.privacy-perm-badge {
  background: #EBF8FF;
  color: #2B6CB0;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #BEE3F8;
}

.privacy-perm-name {
  font-weight: 700;
  color: #2D3748;
  font-size: 0.95rem;
}

.privacy-perm-desc {
  font-size: 0.925rem;
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.privacy-contact-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFDF9 0%, #F7FAF5 100%);
  border: 1.5px solid #C6F6D5;
  border-radius: 24px;
  padding: 2.2rem 3rem;
  text-align: left;
  box-shadow: 0 4px 15px rgba(56, 161, 105, 0.08);
  margin-bottom: 2rem;
}

.privacy-contact-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.privacy-contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.9;
}

.privacy-contact-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
  margin: 0;
}

.privacy-contact-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95);
}

.privacy-contact-desc {
  font-size: 0.925rem;
  color: #2D3748;
  margin-bottom: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.btn-github-issue {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #2D3748;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(45, 55, 72, 0.25);
  transition: all 0.2s ease;
}

.btn-github-issue:hover {
  background: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 55, 72, 0.35);
  color: #FFFFFF;
}

.btn-github-issue svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 2.1rem;
  }
  .privacy-card {
    padding: 1.5rem 1.5rem;
  }
  .privacy-perm-grid {
    grid-template-columns: 1fr;
  }
}

/* Disabled Footer Links */
.footer-link-disabled {
  color: #A0AEC0 !important;
  cursor: not-allowed;
  opacity: 0.85;
  user-select: none;
  font-size: inherit;
  transition: opacity 0.2s ease;
}
.footer-link-disabled:hover {
  color: #A0AEC0 !important;
  opacity: 0.85;
}

.footer-badge-soon {
  font-size: 0.65rem;
  font-weight: 700;
  background: #EDF2F7;
  color: #718096;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  border: 1px solid #E2E8F0;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   404 Error Page Styles
   ========================================================================== */
.error-page-container {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.error-card {
  background: #FFFFFF;
  border: 1.5px solid #F0EAE1;
  border-radius: 28px;
  padding: 3.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.error-buddy-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
}

.error-buddy-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}

.error-code {
  font-size: 4.5rem;
  font-weight: 800;
  color: #38A169;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.error-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 0.85rem;
}

.error-desc {
  font-size: 1.025rem;
  color: #718096;
  margin-bottom: 1.85rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}







