/* Home V2 Page - Based on Figma Design */
/* Using BEM naming convention with root class `plante-test-home-v2` */

/* ========================================
 * Nav Bar - Mobile Design
 * ======================================== */
.plante-test-home-v2__navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.06);
}

/* ========================================
 * Nav Bar - PC Design (React style)
 * ======================================== */
.plante-test-home-v2__navbar.reku-new-theme {
  --height-header: 70px;
  --bg-primary: #FFFFFF;
  --text-primary: #1A1A1A;
  --primary-color: #00D4FF;
  --primary-light: #33DDFF;
  --primary-dark: #00A8CC;
  --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
  --border-primary: #E5E7EB;
  --shadow-sm: 0px 1px 12px rgba(16, 24, 40, 0.06), 0px 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-button: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  --radius-button: 8px;
  --transition-fast: 0.2s;
  --font-size-sm: 14px;
  --font-weight-medium: 500;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
}

.plante-test-home-v2__navbar.reku-new-theme {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-primary);
  box-shadow: var(--shadow-sm);
}

.plante-test-home-v2__navbar.reku-new-theme.slide-up {
  --tw-translate-y: -100%;
  transform: translateY(var(--tw-translate-y));
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
}

.plante-test-home-v2__navbar.reku-new-theme .plante-test-home-v2__navbar-content {
  height: var(--height-header);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plante-test-home-v2__navbar.reku-new-theme .plante-test-home-v2__nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.plante-test-home-v2__navbar.reku-new-theme a.plante-test-home-v2__logo {
  text-decoration: none;
}

.plante-test-home-v2__navbar.reku-new-theme .plante-test-home-v2__nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.plante-test-home-v2__navbar.reku-new-theme .nav-menu-item {
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.plante-test-home-v2__navbar.reku-new-theme .nav-menu-item:hover {
  color: var(--primary-color);
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .nav-menu-item {
  color: white;
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .nav-menu-item:hover {
  color: var(--primary-light);
}

.plante-test-home-v2__navbar.reku-new-theme .plante-test-home-v2__nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language trigger - plain text style (matches React AuthMenu) */
.plante-test-home-v2__navbar.reku-new-theme .pc-lang-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  padding: var(--spacing-sm, 8px) var(--spacing-md, 12px);
  transition: color 0.2s ease;
}

.plante-test-home-v2__navbar.reku-new-theme .pc-lang-trigger:hover {
  color: var(--primary-color);
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .pc-lang-trigger {
  color: white;
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .pc-lang-trigger:hover {
  color: var(--primary-light);
}

.plante-test-home-v2__navbar.reku-new-theme .pc-lang-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

/* User trigger - plain text style (matches React AuthMenu) */
.plante-test-home-v2__navbar.reku-new-theme .pc-user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: color 0.2s ease;
}

.plante-test-home-v2__navbar.reku-new-theme .pc-user-trigger:hover {
  color: var(--primary-color);
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .pc-user-trigger {
  color: white;
}

.plante-test-home-v2__navbar.reku-new-theme.transparent-bg .pc-user-trigger:hover {
  color: var(--primary-light);
}

.plante-test-home-v2__navbar.reku-new-theme .pc-user-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

/* Login button */
.plante-test-home-v2__navbar.reku-new-theme .home-v2-login-btn {
  display: flex;
  align-items: center;
  padding: var(--spacing-sm, 8px) var(--spacing-lg, 16px);
  background: var(--primary-gradient);
  border: none;
  color: white;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
  text-decoration: none;
}

.plante-test-home-v2__navbar.reku-new-theme .home-v2-login-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* User Dropdown */
.plante-test-home-v2__navbar.reku-new-theme .user-dropdown {
  position: relative;
  display: inline-block;
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background-color: var(--bg-card, #FFFFFF);
  border-radius: var(--radius-md, 8px);
  box-shadow: var(--shadow-lg, 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03));
  border: 1px solid var(--border-primary, #E5E7EB);
  padding: var(--spacing-xs, 4px);
  min-width: 180px;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-sm, 8px) var(--spacing-lg, 16px);
  color: var(--text-primary, #1A1A1A);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  font-size: var(--font-size-sm, 14px);
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown-item:hover {
  background-color: var(--bg-secondary, #F8FAFB);
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown-divider {
  height: 1px;
  background-color: var(--border-primary, #E5E7EB);
  margin: var(--spacing-xs, 4px) 0;
}

.plante-test-home-v2__navbar.reku-new-theme .user-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* ========================================
 * Language Dropdown Styles
 * ======================================== */
.plante-test-home-v2__navbar.reku-new-theme .language-dropdown {
  position: relative;
  display: inline-block;
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  background-color: var(--bg-card, var(--bg-primary, #FFFFFF));
  border-radius: var(--radius-md, 8px);
  box-shadow: var(--shadow-lg, 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03));
  border: 1px solid var(--border-primary, #E5E7EB);
  padding: var(--spacing-xs, 4px);
  min-width: 160px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm, 8px) var(--spacing-lg, 16px);
  color: var(--text-primary, #1A1A1A);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  font-size: var(--font-size-sm, 14px);
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown-item:hover {
  background-color: var(--bg-secondary, #F8FAFB);
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown-item .check-mark {
  color: var(--primary-color, #00D4FF);
  font-size: 16px;
  margin-left: 8px;
}

.plante-test-home-v2__navbar.reku-new-theme .language-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.plante-test-home-v2__navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 375px;
  margin: 0 auto;
}

.plante-test-home-v2__logo {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  gap: 8px;
}

/* van-image container */
.van-image {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  min-width: 40px;
  min-height: 40px;
  /* background-color: rgba(64, 71, 108, 0.1); */
  border-radius: 4px;
}

.van-image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Mobile van-image logo styling */
@media (max-width: 1023px) {
  .plante-test-home-v2__navbar .van-image {
    width: 0.7rem !important;
    height: auto;
  }

  .plante-test-home-v2__navbar .van-image__img {
    width: 100%;
    height: auto;
  }
}

/* Keep the old class for compatibility */
.plante-test-home-v2__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.plante-test-home-v2__logo-text {
  font-size: 20px;
  font-weight: 500;
  color: #40476C;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.plante-test-home-v2__nav-icons-img {
  width: 178px;
  height: 38px;
  object-fit: contain;
}

/* ========================================
 * Language Button Styles
 * ======================================== */
.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  pointer-events: auto;
  z-index: 100;
}

.language-btn:hover {
  background: #f5f5f5;
}

.language-btn:focus {
  outline: 2px solid var(--van-primary-color);
  outline-offset: 2px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #666;
}

.plante-test-home-v2__navbar-content {
  pointer-events: auto;
  z-index: 100;
}

.plante-test-home-v2__nav-right {
  pointer-events: auto;
  z-index: 101;
}

/* Default view states */
.pc-view {
  display: none !important;
}

/* PC-specific styles */
@media (min-width: 1024px) {
  .mobile-view {
    display: none !important;
  }

  .pc-view {
    display: block !important;
  }
}

/* Mobile-specific styles */
@media (max-width: 1023px) {
  .mobile-view {
    display: block !important;
  }

  .pc-view {
    display: none !important;
  }
}

.plante-test-home-v2 {
  /* Layout */
  min-height: 100vh;
  background: #FFFFFF;
  font-family: var(--font-family-base);
  color: #26306A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
 * Hero Section
 * ======================================== */
.plante-test-home-v2__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px 32px;
  max-width: 375px;
  margin: 0 auto;
}

.plante-test-home-v2__hero-image {
  width: 298px;
  height: 287px;
  object-fit: contain;
}

.plante-test-home-v2__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.plante-test-home-v2__hero-title {
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.02em;
  color: #26306A;
  margin: 0;
  text-align: center;
}

.plante-test-home-v2__hero-desc {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.63;
  color: #40476C;
  margin: 0;
  text-align: center;
  white-space: pre-line;
}

.plante-test-home-v2__hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.plante-test-home-v2__btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #25A1FF 0%, #0070E4 100%);
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  cursor: pointer;
  width: 335px;
  height: auto;
  min-height: 58px;
}

.plante-test-home-v2__btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #0070E4;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  cursor: pointer;
  width: 335px;
  min-height: 58px;
  position: relative;
}

.plante-test-home-v2__btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, #25A1FF 0%, #0070E4 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ========================================
 * Invest & Grow Section
 * ======================================== */
.plante-test-home-v2__invest-grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  max-width: 375px;
  margin: 0 auto;
}

.plante-test-home-v2__invest-grow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.plante-test-home-v2__invest-grow-image {
  width: 303px;
  height: 166px;
  object-fit: contain;
}

.plante-test-home-v2__section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  overflow: visible;
}

.plante-test-home-v2__section-header--invest {
  padding-left: 20px;
  width: 335px;
  gap: 0;
}

.plante-test-home-v2__invest-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.plante-test-home-v2__section-header--invest .plante-test-home-v2__section-title {
  margin-top: 14px;
}

.plante-test-home-v2__section-tag-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.plante-test-home-v2__section-tag {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.21;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #25A1FF 0%, #0070E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plante-test-home-v2__section-tag-icon {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.plante-test-home-v2__section-title {
  font-family: "Roboto", sans-serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0.02em;
  color: #26306A;
  margin: 0;
  word-wrap: break-word;
  overflow: visible;
}

.plante-test-home-v2__section-title--small {
  font-size: 28px;
  line-height: 1.21;
}

.plante-test-home-v2__section-desc {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.63;
  color: #6A718A;
  margin: 0;
}

.plante-test-home-v2__divider {
  width: 161px;
  height: 2px;
  background: #E9EAF0;
  border: none;
  margin: 0;
}

/* ========================================
 * Price Alert Section
 * ======================================== */
.plante-test-home-v2__price-alert {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 375px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.plante-test-home-v2__alert-icon-wrapper {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.plante-test-home-v2__price-alert-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.plante-test-home-v2__price-alert-image {
  width: 251px;
  height: 222px;
  object-fit: contain;
}

.plante-test-home-v2__price-alert-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.plante-test-home-v2__price-alert-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding-left: 20px;
  width: 375px;
}

.plante-test-home-v2__price-alert-text .plante-test-home-v2__section-header {
  gap: 8px;
  width: 335px;
}

.plante-test-home-v2__price-alert-text .plante-test-home-v2__section-desc {
  margin: 0;
  width: 335px;
}

/* ========================================
 * Easy Steps Section
 * ======================================== */
.plante-test-home-v2__easy-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
  max-width: 375px;
  margin: 0 auto;
}

.plante-test-home-v2__easy-steps .plante-test-home-v2__section-header {
  padding-left: 20px;
  width: 375px;
  gap: 8px;
}

.plante-test-home-v2__steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 375px;
  padding: 0 20px;
}

.plante-test-home-v2__steps-row {
  display: flex;
  gap: 13px;
  width: 335px;
}

.plante-test-home-v2__step-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 161px;
}

.plante-test-home-v2__step-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #25A1FF 0%, #0070E4 100%) border-box;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plante-test-home-v2__step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plante-test-home-v2__step-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plante-test-home-v2__step-title {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: 0.02em;
  color: #26306A;
  margin: 0;
}

.plante-test-home-v2__step-desc {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #6A718A;
  margin: 0;
}

/* ========================================
 * Why Choose Us Section
 * ======================================== */
.plante-test-home-v2__why-choose {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  padding: 40px 0;
  max-width: 375px;
  margin: 0 auto;
}

.plante-test-home-v2__why-choose-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
  width: 375px;
  overflow: visible;
}

.plante-test-home-v2__why-choose-header .plante-test-home-v2__section-header {
  gap: 8px;
  width: 335px;
}

.plante-test-home-v2__why-choose-header .plante-test-home-v2__section-desc {
  margin: 0;
}

.plante-test-home-v2__why-choose-image {
  width: 375px;
  height: 301px;
  object-fit: contain;
}

.plante-test-home-v2__benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 375px;
  padding: 0 20px;
}

.plante-test-home-v2__benefit-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 335px;
}

.plante-test-home-v2__benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plante-test-home-v2__benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plante-test-home-v2__benefit-title {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: 0.02em;
  color: #26306A;
  margin: 0;
}

.plante-test-home-v2__benefit-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #6A718A;
  margin: 0;
}

/* ========================================
 * Footer
 * ======================================== */
.plante-test-home-v2__footer {
  background: #26306A;
  width: 375px;
  margin: 0 auto;
  padding-top: 40px;
}

.plante-test-home-v2__footer-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.plante-test-home-v2__footer-logo {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  width: 176px;
  height: 44px;
  padding: 0 20px;
  gap: 2px;
}

.plante-test-home-v2__footer-logo-img {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-right: 2px;
}

.plante-test-home-v2__footer-logo-text-group {
  display: flex;
  align-items: baseline;
}

.plante-test-home-v2__footer-logo-c,
.plante-test-home-v2__footer-logo-d {
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.36;
  letter-spacing: 0.02em;
}

.plante-test-home-v2__footer-logo-text {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.78;
}

.plante-test-home-v2__footer-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

.plante-test-home-v2__footer-row {
  display: flex;
  gap: 46px;
}

.plante-test-home-v2__footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 128px;
}

.plante-test-home-v2__footer-col-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  color: #FFFFFF;
  margin: 0;
}

.plante-test-home-v2__footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plante-test-home-v2__footer-link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #E9EAF0;
  text-decoration: none;
}

.plante-test-home-v2__footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.plante-test-home-v2__footer-address,
.plante-test-home-v2__footer-email,
.plante-test-home-v2__footer-phone {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #E9EAF0;
  margin: 0;
}


/* ========================================
 * PC Desktop - Based on Figma Design (>= 1024px)
 * ======================================== */
@media (min-width: 1024px) {
  /* Nav Bar - PC Design */
  .plante-test-home-v2__navbar-content {
    max-width: 1590px;
    width: 1590px;
    padding: 20px 0;
  }

  /* 确保页面内容不被 fixed 定位的 Header 遮挡 */
  .pc-view .plante-test-home-v2__hero {
    padding-top: calc(70px + 120px); /* Header height + original padding */
  }

  /* PC van-image logo styling (matches React Logo h-[40px]) */
  .plante-test-home-v2__navbar .van-image {
    max-height: 40px;
    height: 40px;
    width: auto;
    min-width: 100px;
  }

  .plante-test-home-v2__navbar .van-image__img {
    max-height: 40px;
    width: auto;
    height: 100%;
  }

  .plante-test-home-v2__logo-img {
    width: 56px;
    height: 56px;
  }

  .plante-test-home-v2__logo-text {
    font-size: 28px;
  }

  /* Main container - Full width with 1920px max design reference */
  .plante-test-home-v2 {
    max-width: none;
    width: 100%;
  }

  /* All sections centered with 1590px content width as per Figma */
  .plante-test-home-v2__hero,
  .plante-test-home-v2__invest-grow,
  .plante-test-home-v2__price-alert,
  .plante-test-home-v2__easy-steps,
  .plante-test-home-v2__why-choose,
  .plante-test-home-v2__footer {
    max-width: 1590px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  /* Reset mobile-specific widths */
  .plante-test-home-v2__hero,
  .plante-test-home-v2__invest-grow,
  .plante-test-home-v2__price-alert,
  .plante-test-home-v2__easy-steps,
  .plante-test-home-v2__why-choose,
  .plante-test-home-v2__footer {
    width: 1590px;
    max-width: 1590px;
  }

  /* ========================================
   * Hero Section - PC Design
   * ======================================== */
  .plante-test-home-v2__hero {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 120px 0;
    min-height: 700px;
  }

  .plante-test-home-v2__hero-image {
    width: 680px;
    height: auto;
    max-width: none;
  }

  .plante-test-home-v2__hero-content {
    text-align: left;
    align-items: flex-start;
    gap: 32px;
    max-width: 720px;
  }

  .plante-test-home-v2__hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
    margin: 0;
  }

  .plante-test-home-v2__hero-desc {
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
  }

  .plante-test-home-v2__hero-buttons {
    flex-direction: row;
    gap: 24px;
    width: auto;
  }

  .plante-test-home-v2__btn-primary,
  .plante-test-home-v2__btn-secondary {
    width: auto;
    min-width: 220px;
    padding: 18px 48px;
    font-size: 18px;
    height: auto;
    min-height: auto;
  }

  /* ========================================
   * Invest & Grow Section - PC Design
   * ======================================== */
  .plante-test-home-v2__invest-grow {
    padding: 120px 0;
    gap: 80px;
  }

  .plante-test-home-v2__invest-grow-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
  }

  .plante-test-home-v2__invest-grow-image {
    width: 680px;
    height: auto;
    max-width: none;
  }

  .plante-test-home-v2__invest-text {
    align-items: flex-start;
    max-width: 680px;
    gap: 48px;
  }

  .plante-test-home-v2__section-header--invest {
    padding-left: 0;
    width: 100%;
    gap: 16px;
  }

  .plante-test-home-v2__section-tag {
    font-size: 24px;
    font-weight: 600;
  }

  .plante-test-home-v2__section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .plante-test-home-v2__section-desc {
    font-size: 18px;
    line-height: 1.7;
  }

  /* ========================================
   * Price Alert Section - PC Design
   * ======================================== */
  .plante-test-home-v2__price-alert {
    width: 1590px;
    max-width: 1590px;
    padding: 120px 0;
  }

  .plante-test-home-v2__price-alert-content {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
  }

  .plante-test-home-v2__price-alert-image {
    width: 600px;
    height: auto;
    max-width: none;
  }

  .plante-test-home-v2__price-alert-body {
    align-items: flex-start;
    max-width: 720px;
  }

  .plante-test-home-v2__price-alert-text {
    padding-left: 0;
    width: 100%;
  }

  .plante-test-home-v2__price-alert-text .plante-test-home-v2__section-header {
    width: 100%;
    gap: 16px;
  }

  .plante-test-home-v2__price-alert-text .plante-test-home-v2__section-desc {
    width: 100%;
  }

  /* ========================================
   * Easy Steps Section - PC Design
   * ======================================== */
  .plante-test-home-v2__easy-steps {
    padding: 120px 0;
    gap: 80px;
  }

  .plante-test-home-v2__easy-steps .plante-test-home-v2__section-header {
    padding-left: 0;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 24px;
  }

  .plante-test-home-v2__steps-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    gap: 40px;
    padding: 0;
  }

  .plante-test-home-v2__steps-row {
    width: 50%;
    gap: 40px;
    justify-content: space-between;
  }

  .plante-test-home-v2__step-card {
    width: 100%;
    max-width: 360px;
    gap: 24px;
  }

  .plante-test-home-v2__step-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .plante-test-home-v2__step-number {
    width: 56px;
    height: 56px;
  }

  .plante-test-home-v2__step-number img {
    width: 100%;
    height: 100%;
  }

  .plante-test-home-v2__step-title {
    font-size: 24px;
    font-weight: 600;
  }

  .plante-test-home-v2__step-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  /* ========================================
   * Why Choose Us Section - PC Design
   * ======================================== */
  .plante-test-home-v2__why-choose {
    padding: 120px 0;
    gap: 80px;
  }

  .plante-test-home-v2__why-choose-header {
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
  }

  .plante-test-home-v2__why-choose-header .plante-test-home-v2__section-header {
    width: auto;
    gap: 24px;
  }

  .plante-test-home-v2__why-choose-image {
    width: 700px;
    height: auto;
  }

  .plante-test-home-v2__benefits-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    gap: 40px;
    padding: 0;
  }

  .plante-test-home-v2__benefit-card {
    width: calc(33.333% - 27px);
    max-width: 500px;
    gap: 24px;
  }

  .plante-test-home-v2__benefit-icon {
    width: 72px;
    height: 72px;
  }

  .plante-test-home-v2__benefit-icon img {
    width: 100%;
    height: 100%;
  }

  .plante-test-home-v2__benefit-title {
    font-size: 24px;
    font-weight: 600;
  }

  .plante-test-home-v2__benefit-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  /* ========================================
   * Divider - PC Design
   * ======================================== */
  .plante-test-home-v2__divider {
    width: 100%;
    max-width: 1590px;
    margin: 0 auto;
  }

  /* ========================================
   * Footer - PC Design
   * ======================================== */
  .plante-test-home-v2__footer {
    width: 100%;
    max-width: 1920px;
    padding-top: 80px;
  }

  .plante-test-home-v2__footer-content {
    width: 1590px;
    max-width: 1590px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    padding: 0 0 60px;
  }

  .plante-test-home-v2__footer-logo {
    padding: 0;
    width: auto;
    height: auto;
  }

  .plante-test-home-v2__footer-links {
    flex-direction: row;
    gap: 80px;
    padding: 0;
  }

  .plante-test-home-v2__footer-row {
    gap: 80px;
  }

  .plante-test-home-v2__footer-col {
    width: auto;
    min-width: 180px;
  }

  .plante-test-home-v2__footer-col-title {
    font-size: 20px;
    font-weight: 600;
  }

  .plante-test-home-v2__footer-link {
    font-size: 16px;
  }
}

/* ========================================
 * Extra Large Screens (>= 1920px)
 * ======================================== */
@media (min-width: 1920px) {
  .plante-test-home-v2__footer {
    max-width: 1920px;
  }
}

/* ========================================
 * Mobile Bottom TabBar
 * ======================================== */
.mobile-view .van-tabbar__placeholder {
  height: 50px;
}

.mobile-view .van-tabbar {
  z-index: 100;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 50px;
  background: var(--van-background-2, #fff);
}

.mobile-view .van-tabbar--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
}

.mobile-view .van-tabbar-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--van-text-color, #323233);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.mobile-view .van-tabbar-item__icon {
  margin-bottom: 4px;
  font-size: 22px;
}

.mobile-view .van-tabbar-item--active {
  color: var(--van-primary-color, #1989fa);
}

.mobile-view .van-tabbar-item__text {
  font-size: 12px;
}

/* ========================================
 * Mobile Nav Right - matches PC nav-right
 * ======================================== */
.mobile-view .plante-test-home-v2__navbar {
  --text-primary: #1A1A1A;
  --primary-color: #00D4FF;
  --primary-light: #33DDFF;
  --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
  --border-primary: #E5E7EB;
  --bg-card: #FFFFFF;
  --bg-secondary: #F8FAFB;
  --shadow-button: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  --radius-button: 8px;
  --radius-md: 8px;
  --font-size-sm: 14px;
  --font-weight-medium: 500;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --transition-fast: 0.2s;
}

.mobile-view .plante-test-home-v2__nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Language trigger */
.mobile-view .mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s ease;
}

.mobile-view .mobile-lang-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

/* Mobile Language dropdown */
.mobile-view .language-dropdown {
  position: relative;
  display: inline-block;
}

.mobile-view .language-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-primary);
  padding: var(--spacing-xs);
  min-width: 160px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-view .language-dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-view .language-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  font-size: var(--font-size-sm);
}

.mobile-view .language-dropdown-item:active {
  background-color: var(--bg-secondary);
}

.mobile-view .language-dropdown-item .check-mark {
  color: var(--primary-color);
  font-size: 16px;
  margin-left: 8px;
}

.mobile-view .language-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile Login button */
.mobile-view .home-v2-login-btn {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--primary-gradient);
  border: none;
  color: white;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-button);
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-view .home-v2-login-btn:active {
  opacity: 0.9;
}

/* Mobile User Dropdown */
.mobile-view .user-dropdown {
  position: relative;
  display: inline-block;
}

.mobile-view .mobile-user-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s ease;
}

.mobile-view .mobile-user-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

.mobile-view .user-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-primary);
  padding: var(--spacing-xs);
  min-width: 200px;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-view .user-dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-view .user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 4px;
  font-size: var(--font-size-sm);
}

.mobile-view .user-dropdown-item:active {
  background-color: var(--bg-secondary);
}

.mobile-view .user-dropdown-divider {
  height: 1px;
  background-color: var(--border-primary);
  margin: var(--spacing-xs) 0;
}

.mobile-view .user-dropdown-item.logout {
  color: #EF4444;
}

.mobile-view .user-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
