@charset "utf-8";
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

:root {
  --brand: #871556;
  --brand-dark: #6a0e42;
  --brand-light: #f9edf3;
  --accent: #c8477e;
  --gold: #c8976a;
  --cream: #fff8f4;
  --text: #1a1a2e;
  --text-mid: #5a3a4a;
  --text-light: #9a7080;
  --white: #ffffff;
  --bg: #fdfbf8;
  --border: #eedde8;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(135,21,86,.10);
  --shadow-lg: 0 8px 48px rgba(135,21,86,.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.hero-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgb(106, 14, 66) !important;
  padding: 120px 40px 0;
}

.top-bar {
  background: #871556;
  color: #fff;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8em;
  position: relative;
  z-index: 2000;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left svg {
  opacity: 0.75;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease 0s;
}

.top-bar-right a:hover {
  color: var(--white);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease 0s, background 0.2s ease 0s;
  position: relative;
  z-index: 1002;
}

.social-icon .qr-popup {
  display: none;
  position: absolute;
  top: 36px;
  right: 0px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  z-index: 9999;
  box-shadow: var(--shadow);
  font-size: 0.75em;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}

.social-icon .qr-popup::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transform: rotate(45deg);
}

.social-icon:hover .qr-popup {
  display: block;
}

.main-nav {
  background: transparent;
  border-bottom: none;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 80px;
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 1200px;
  margin: 0 auto;
  transition: top 0.3s ease;
}

.main-nav.menu-open {
  top: 0;
}

.main-nav.menu-open::before {
  opacity: 1 !important;
  background: #fff !important;
  top: 0 !important;
  height: 100% !important;
}

.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  right: -50vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.main-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50vw;
  right: -50vw;
  height: 1px;
  background: #eedde8;
  z-index: -1;
}

.main-nav.is-hidden::before {
  opacity: 0;
}

.main-nav:hover::before {
  opacity: 1;
  background: #fff;
}

.main-nav.scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  top: -32px;
  height: calc(100% + 32px);
}

.main-nav.scrolled:hover::before {
  opacity: 1;
  background: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 30px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.main-nav:hover .nav-links-wrap > a,
.main-nav.scrolled .nav-links-wrap > a {
  color: #871556;
}

.main-nav:hover .nav-links-wrap > a.active,
.main-nav.scrolled .nav-links-wrap > a.active {
  color: #fff;
  background: #871556;
}

.main-nav:hover .nav-links-wrap > a:hover,
.main-nav.scrolled .nav-links-wrap > a:hover {
  color: #871556;
  background: rgba(135, 21, 86, 0.1);
}

.main-nav:hover .nav-cta,
.main-nav.scrolled .nav-cta {
  background: #871556 !important;
  color: #fff !important;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0%;
  justify-content: center;
  margin-left: 40px;
  overflow: visible;
}

.nav-links-wrap > a {
  text-decoration: none;
  color: #871556;
  font-size: 1em;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease 0s, background 0.2s ease 0s;
  white-space: nowrap;
  background: transparent;
}

.nav-links-wrap > a:hover {
  color: #871556;
  background: #fff;
}

.nav-links-wrap > a.active {
  color: #871556;
  font-weight: 700;
}

.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-wrap a,
.nav-dropdown-wrap a:hover {
  text-decoration: none;
}

.nav-dropdown-wrap:hover .nav-news,
.nav-dropdown-wrap:hover .nav-lang {
  color: #871556;
  background: #fff;
}

.nav-news {
  font-size: 1em;
  color: #871556;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease 0s, background 0.2s ease 0s;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;
}

.nav-news.active,
.nav-dropdown-wrap .nav-news.active {
  color: #871556;
  font-weight: 700;
}

.main-nav:hover .nav-news.active,
.main-nav.scrolled .nav-news.active {
  color: #fff;
  background: #871556;
}

.nav-links-wrap .nav-news:hover {
  color: #871556;
  background: #fff;
}

.main-nav:hover .nav-dropdown-wrap:hover .nav-news,
.main-nav.scrolled .nav-dropdown-wrap:hover .nav-news,
.main-nav:hover .nav-news:hover,
.main-nav.scrolled .nav-news:hover {
  color: #871556;
  background: rgba(135, 21, 86, 0.1);
}

.main-nav.scrolled .nav-news,
.main-nav:hover .nav-news {
  color: #871556;
}

.news-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  width: fit-content;
  z-index: 99999;
  margin-top: 0;
  text-align: left;
}

.news-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--white);
  pointer-events: none;
}

.news-dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown-wrap:hover .news-dropdown,
.news-dropdown:hover {
  display: block;
}

.news-dropdown a,
.nav-dropdown-wrap:hover .news-dropdown a,
.main-nav:hover .news-dropdown a,
.main-nav.scrolled .news-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #1D2129;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.news-dropdown a.active,
.nav-dropdown-wrap:hover .news-dropdown a.active,
.main-nav:hover .news-dropdown a.active,
.main-nav.scrolled .news-dropdown a.active {
  color: #871556 !important;
  font-weight: 600;
}

.news-dropdown a:hover,
.nav-dropdown-wrap:hover .news-dropdown a:hover,
.main-nav:hover .news-dropdown a:hover,
.main-nav.scrolled .news-dropdown a:hover {
  background: var(--brand-light);
  color: #871556;
}

.nav-lang {
  font-size: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease 0s, background 0.2s ease 0s;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;
  color: #871556;
}

.nav-lang.active,
.nav-dropdown-wrap .nav-lang.active {
  color: #871556;
  font-weight: 700;
}

.main-nav:hover .nav-lang.active,
.main-nav.scrolled .nav-lang.active {
  color: #fff;
  background: #871556;
}

.nav-links-wrap .nav-lang:hover {
  color: #871556;
  background: #fff;
}

.main-nav:hover .nav-dropdown-wrap:hover .nav-lang,
.main-nav.scrolled .nav-dropdown-wrap:hover .nav-lang,
.main-nav:hover .nav-lang:hover,
.main-nav.scrolled .nav-lang:hover {
  color: #871556;
  background: rgba(135, 21, 86, 0.1);
}

.nav-lang .lang-arrow {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.nav-dropdown-wrap:hover .lang-arrow,
.nav-lang.active .lang-arrow {
  transform: rotate(0deg);
}

.main-nav.scrolled .nav-lang,
.main-nav:hover .nav-lang {
  color: #871556;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 180px;
  z-index: 99999;
  margin-top: 0;
}

.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--white);
  pointer-events: none;
}

.lang-dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown-wrap:hover .lang-dropdown,
.lang-dropdown:hover {
  display: block;
}



.lang-dropdown a,
.nav-dropdown-wrap:hover .lang-dropdown a,
.main-nav:hover .lang-dropdown a,
.main-nav.scrolled .lang-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #1D2129;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown a .check {
  color: #871556;
  font-size: 1.2em;
  width: 20px;
  text-align: left;
}

.lang-dropdown a:hover,
.nav-dropdown-wrap:hover .lang-dropdown a:hover,
.main-nav:hover .lang-dropdown a:hover,
.main-nav.scrolled .lang-dropdown a:hover {
  background: var(--brand-light);
  color: #871556;
}

.lang-dropdown a.active,
.nav-dropdown-wrap:hover .lang-dropdown a.active,
.main-nav:hover .lang-dropdown a.active,
.main-nav.scrolled .lang-dropdown a.active {
  color: #871556 !important;
  font-weight: 600;
}

.main-nav:hover .nav-lang,
.main-nav.scrolled .nav-lang {
  color: #871556;
  border-color: #871556;
}

.nav-cta {
  background: var(--white);
  color: var(--brand) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 0.85em !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--brand) !important;
}

/* 移动端导航样式 */
.mobile-menu-btn {
  display: none !important;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: #871556;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 移动端导航菜单 */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 56px);
  background: #ffffff;
  z-index: 1000;
  flex-direction: column;
  padding-top: 0;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  transform: translateY(0);
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-nav-backdrop.active {
  display: block;
}

/* 移动端导航头部 */
.mobile-nav-header {
  padding: 20px 24px;
  background: #f9edf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo img {
  height: 44px;
  width: auto;
}

.mobile-social-icons {
  display: flex;
  gap: 10px;
}

.mobile-social-icons .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #871556;
  background: rgba(135, 21, 86, 0.1);
  transition: all 0.2s ease;
}

.mobile-social-icons .social-icon:hover {
  background: rgba(135, 21, 86, 0.2);
}

/* 移动端关闭按钮 */
.mobile-close-btn {
  position: static;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1000;
}

.mobile-close-btn:hover {
  opacity: 0.7;
}

.mobile-close-btn span {
  width: 28px;
  height: 3px;
  background: #871556;
  position: absolute;
  border-radius: 2px;
}

.mobile-close-btn span:first-child {
  transform: rotate(45deg);
}

.mobile-close-btn span:last-child {
  transform: rotate(-45deg);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0;
}

.mobile-nav-links a {
  color: #1a1a2e;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 600;
  padding: 24px 28px;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  letter-spacing: normal;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent !important;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background-color: #f9edf3 !important;
  color: #871556 !important;
}

#mobileNav .mobile-nav-links .mobile-nav-dropdown a.has-arrow:hover,
#mobileNav .mobile-nav-links .mobile-nav-dropdown a.has-arrow:active {
  background-color: #f9edf3 !important;
  color: #871556 !important;
}

.mobile-nav-links a.has-arrow::after {
  content: '';
  display: inline-flex;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #c8477e;
  position: absolute;
  right: 28px;
  transition: transform 0.2s ease;
}

.mobile-nav-links a.active,
.mobile-nav-links .mobile-nav-dropdown a.has-arrow.active,
#mobileNav .mobile-nav-links .mobile-nav-dropdown a.has-arrow.active {
  background-color: #f9edf3 !important;
  color: #871556 !important;
}


.mobile-nav-dropdown.open > a.has-arrow::after {
  transform: rotate(90deg);
}



.mobile-nav-dropdown-content {
  display: none;
  background: transparent;
  padding: 0;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-content {
  display: block;
}

.mobile-nav-links .mobile-nav-dropdown-content a {
  display: block;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 13px !important;
  font-weight: 500;
  padding: 14px 48px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  letter-spacing: normal;
}

.mobile-nav-dropdown-content a:last-child {
  border-bottom: none;
}

.mobile-nav-dropdown-content a:hover {
  color: #871556;
  background: #f9edf3 !important;
}



.mobile-nav-dropdown-content a.active {
  color: #871556;
  font-weight: 600;
}

.mobile-nav-dropdown-content a .check {
  display: inline-block;
  width: 18px;
  color: #871556;
  font-weight: 700;
}

.mobile-nav-dropdown-content a .check:not(:empty) {
  opacity: 1;
}

.mobile-lang {
  padding: 24px 28px;
  background: var(--brand-light);
  border-bottom: 1px solid #e8e8e8;
}

.mobile-lang span {
  display: block;
  font-size: 0.85em;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-lang-options {
  display: flex;
  gap: 12px;
}

.mobile-lang-options a {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mobile-lang-options a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-lang-options a.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}



.mobile-nav-links .nav-cta {
  background: #871556 !important;
  color: #ffffff !important;
  font-weight: 700;
  margin-top: 20px;
  padding: 18px 24px !important;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  border-bottom: none;
}

.mobile-nav-links .nav-cta::after {
  content: '';
}

.mobile-nav-links .nav-cta:hover {
  background: #6a0e42 !important;
}

/* 响应式媒体查询 */
@media (max-width: 900px) {
  .main-nav .nav-links-wrap {
    display: none;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .hero-hero {
    padding: 0 16px;
  }
  .top-bar {
    padding: 6px 12px;
    font-size: 0.75em;
    z-index: 900;
  }
  .top-bar-right {
    gap: 6px;
  }
  .main-nav {
    height: 56px;
    gap: 12px;
    top: 0;
  }
  .main-nav.menu-open {
    top: 0;
    z-index: 1001;
  }
  .main-nav.menu-open::before {
    top: 0;
    height: 100%;
    opacity: 1;
    background: #fff;
  }
  .nav-logo img {
    height: 32px;
  }
}

@media (max-width: 600px) {
  /* Mobile menu button color adjustment when active */
  .mobile-menu-btn.active span {
    background: #871556;
  }
  .mobile-nav-links a {
    font-size: 1.0em;
    padding: 14px 24px;
  }
}

@media (max-width: 600px) {
  /* Footer */
  .footer-inner > div:first-child {
    grid-template-columns: 1fr !important;
  }
  .footer-inner > div:first-child > div:first-child {
    align-items: center !important;
    padding: 30px 16px 20px !important;
    text-align: center !important;
  }
  .footer-inner > div:first-child > div:first-child > div:first-child {
    margin-top: -70px !important;
    width: 90px !important;
    height: 90px !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(2) {
    text-align: center !important;
    font-size: 1.3em !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(3) {
    justify-content: center !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(4) {
    text-align: left !important;
    width: 100% !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(4) > div {
    justify-content: flex-start !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(5) {
    text-align: left !important;
    width: 100% !important;
  }
  /* Footer links grid */
  .footer-inner > div:first-child > div:last-child > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child > div {
    text-align: center;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child > div h4 {
    font-size: 1em !important;
    margin-bottom: 12px;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child > div ul {
    display: block;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child > div ul li {
    margin-bottom: 8px;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child > div ul li a {
    font-size: 0.8em;
  }
  /* Footer About section */
  .footer-inner > div:first-child > div:last-child > div:nth-child(2) {
    padding: 20px 16px !important;
    text-align: center !important;
  }
  /* State guides */
  .state-links {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px 12px !important;
  }
}

@media (max-width: 480px) {
  /* Footer */
  .footer {
    padding: 40px 12px 20px;
  }
  .footer-inner > div:first-child > div:first-child {
    padding: 24px 12px 16px !important;
  }
  .footer-inner > div:first-child > div:first-child > div:first-child {
    margin-top: -50px !important;
    width: 80px !important;
    height: 80px !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(2) {
    font-size: 1.1em !important;
    margin-top: 14px !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(4) {
    text-align: center !important;
    padding-left: 0 !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(4) > div {
    align-items: center !important;
    justify-content: center !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(4) > div > div:nth-child(2) > div:first-child {
    text-align: left !important;
  }
  .footer-inner > div:first-child > div:first-child > div:nth-child(5) {
    text-align: center !important;
    padding-left: 0 !important;
  }
  .footer-inner > div:first-child > div:last-child > div:first-child {
    padding: 16px 12px !important;
  }
  .footer-inner > div:first-child > div:last-child > div:nth-child(2) {
    padding: 16px 12px !important;
  }
  .footer-inner > div:first-child > div:last-child > div:nth-child(2) p {
    font-size: 0.78em !important;
    line-height: 1.6 !important;
  }
  /* State guides */
  div[style*="background:#871556;padding:40px 0 20px;"] {
    padding: 20px 0 12px !important;
  }
  .state-links {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    font-size: 0.75em !important;
    text-align: center !important;
  }
  div[style*="background:#871556;padding:20px 40px;"] {
    padding: 12px 16px !important;
  }
}

/* ========= Footer ========= */
.ftr {
  background: #A71A50;
  position: relative;
  color: #fff;
}

.ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.ftr-main {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 0;
}

.ftr-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 40px 50px;
}

.ftr-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #A71A50;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: -100px;
}

.ftr-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ftr-brand-name {
  font-size: 1.6em;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-top: 20px;
  width: 100%;
}

.ftr-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.ftr-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
}

.ftr-social a:hover {
  background: rgba(255,255,255,0.25);
}

.ftr-social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ftr-contact {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ftr-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ftr-label {
  font-size: 0.75em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ftr-value {
  color: #fff;
  font-size: 0.9em;
}

.ftr-address {
  margin-top: 32px;
  color: #fff;
  font-size: 0.9em;
  line-height: 1.6;
}

.ftr-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 40px 30px;
}

.ftr-links-grid h4 {
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ftr-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftr-links-grid li {
  margin-bottom: 10px;
}

.ftr-links-grid a {
  color: rgba(255,255,255);
  text-decoration: none;
  font-size: 0.85em;
  transition: color 0.2s;
}

.ftr-links-grid a:hover {
  color: #fff;
}

.ftr-about {
  padding: 20px 40px 40px;
}

.ftr-about h4 {
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.ftr-about p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85em;
  line-height: 1.8;
  margin: 0;
}

.ftr-states {
  background: #871556;
  padding: 40px 0 20px;
}

.ftr-states-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ftr-states-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ftr-states-head h4 {
  font-size: 0.9em;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ftr-toggle {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 1.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.state-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 16px;
  font-size: 0.8em;
  text-align: left;
}

.state-links a {
  color: rgba(255,255,255);
  text-decoration: none;
  transition: color 0.2s;
  text-align: left;
}

.state-links a:hover {
  color: rgba(255,255,255,1);
}

.ftr-bottom-bar {
  background: #871556;
  padding: 20px 40px;
  margin-top: 20px;
}

.ftr-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.ftr-bottom-content {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.ftr-bottom-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.8em;
  margin: 0;
  padding-bottom: 2px;
  align-self: flex-end;
}

.ftr-brand-block {
  text-align: right;
  line-height: 0.75;
  align-self: flex-end;
}

.ftr-brand-block div {
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ftr-main {
    grid-template-columns: 1fr;
  }
  .ftr-brand {
    align-items: center;
    padding: 20px;
  }
  .ftr-logo {
    margin-top: -60px;
    width: 100px;
    height: 100px;
  }
  .ftr-brand-name, .ftr-social {
    text-align: center;
    justify-content: center;
  }
  .ftr-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 20px;
  }
  .ftr-content .ftr-links-grid,
  .ftr-content .ftr-links-grid > div,
  .ftr-content .ftr-links-grid h4,
  .ftr-content .ftr-links-grid ul {
    text-align: center;
  }
  .ftr-content .ftr-links-grid ul {
    padding-left: 0;
  }
  .ftr-about {
    padding: 20px;
    text-align: center;
  }
  .ftr-states, .ftr-bottom-bar {
    padding: 24px 16px;
  }
  .ftr-bottom-inner {
    justify-content: center;
  }
  .ftr-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .ftr-brand-block {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .ftr-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ftr-brand-name {
    font-size: 1.2em;
  }
}


/* 提示弹框 */
.fadein_tip {
  overflow: hidden;
  width: 400px;
  background: #E8EFFF;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  display: flex;
  border-radius: 6px;
  align-items: flex-start;
  padding: 16px; }
  .fadein_tip.on {
    background: #FFF2E5; }
    .fadein_tip.on .icon {
      background-image: url(../images/tips2.png); }
  .fadein_tip.on1 {
    background: #E5F8EA; }
    .fadein_tip.on1 .icon {
      background-image: url(../images/tips1.png); }
  .fadein_tip.on2 {
    background: #FEECEC; }
    .fadein_tip.on2 .icon {
      background-image: url(../images/tips.png); }
  .fadein_tip .icon {
    width: 16px;
    height: 16px;
    transform: translateY(5px);
    background-image: url(../images/tips3.png); }
  .fadein_tip .grow {
    flex: 1;
    padding-left: 8px; }
    .fadein_tip .grow p {
      font-size: 16px;
      color: #1D2129;
      line-height: 24px;
      margin-bottom: 4px;
      font-weight: bold; }
    .fadein_tip .grow span {
      display: block;
      font-size: 14px;
      line-height: 22px;
      color: #1D2129; }

.fadein_tip::after {
  content: '';
  width: 16px;
  height: 16px;
  background-size: 100% 100%;
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  background-image: url(../images/closex.png); }

.fadein_tip .icon {
  background-size: 100% 100%; }