/* ===== 全局基础样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #0d0d0e;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #FCD957;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffe680;
}

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

/* ===== 导航 header 样式 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(22, 22, 23, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.site-header.scrolled {
  background-color: rgba(22, 22, 23, 0.95);
  box-shadow: 0 1px 0 rgba(252, 217, 87, 0.08);
}

.navbar {
  width: 100%;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-title-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.navbar-title-sub {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.3px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: #FCD957;
  background-color: rgba(252, 217, 87, 0.06);
}

.nav-link.active {
  color: #FCD957;
}

/* 下拉菜单 */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(22, 22, 23, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 14px;
  color: #aaa;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: #FCD957;
  background-color: rgba(252, 217, 87, 0.06);
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-download {
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.btn-download:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-buy {
  color: #161617;
  background: #FCD957;
  border: 1px solid #FCD957;
}

.btn-buy:hover {
  background: #ffe680;
  border-color: #ffe680;
  box-shadow: 0 4px 20px rgba(252, 217, 87, 0.3);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.navbar-toggle:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== 页脚 footer 样式 ===== */
.site-footer {
  background-color: #111112;
  border-top: 1px solid rgba(252, 217, 87, 0.06);
  padding: 48px 0 32px;
  margin-top: 0;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-products {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-product-item {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-product-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-product-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: #666;
}

.footer-contact-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #FCD957;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright p {
  font-size: 13px;
  color: #666;
}

.footer-copyright a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: #FCD957;
}

.footer-legal {
  text-align: right;
  max-width: 540px;
}

.footer-reseller-zh {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.footer-reseller-en {
  font-size: 11px;
  color: #444;
  font-style: italic;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #FCD957;
}

/* ===== 通用内容样式 ===== */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(252, 217, 87, 0.06) 0%, transparent 60%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(252, 217, 87, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-product-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 16px;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero h1 .highlight {
  color: #FCD957;
}

.page-hero .subtitle {
  font-size: 18px;
  color: #999;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 32px;
}

.page-hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: #FCD957;
  color: #161617;
  border: 1px solid #FCD957;
}

.hero-btn-primary:hover {
  background: #ffe680;
  color: #161617;
  box-shadow: 0 6px 30px rgba(252, 217, 87, 0.3);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.hero-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.hero-platform img {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

/* ===== 通用 Section ===== */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: #111112;
}

.section-gradient {
  background: linear-gradient(180deg, #0d0d0e 0%, #111112 50%, #0d0d0e 100%);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 16px;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 217, 87, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(252, 217, 87, 0.15);
  background: rgba(252, 217, 87, 0.02);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(252, 217, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FCD957;
}

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

.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  color: #FCD957;
  font-weight: 600;
}

/* ===== 展示区块（左右交替） ===== */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.showcase-item:nth-child(even) {
  direction: rtl;
}

.showcase-item:nth-child(even) > * {
  direction: ltr;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.showcase-text p {
  font-size: 15px;
  color: #999;
  line-height: 1.8;
}

.showcase-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #161617;
}

.showcase-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 特性列表 ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 14px;
  color: #ccc;
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: rgba(252, 217, 87, 0.04);
  border-color: rgba(252, 217, 87, 0.12);
  color: #fff;
}

.feature-check {
  flex-shrink: 0;
  color: #FCD957;
}

/* ===== FAQ 手风琴 ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(252, 217, 87, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #FCD957;
}

.faq-question .faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #666;
}

.faq-item.is-open .faq-question .faq-arrow {
  transform: rotate(180deg);
  color: #FCD957;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 16px 24px 20px;
  font-size: 14px;
  color: #999;
  line-height: 1.8;
}

.faq-answer-inner ul {
  padding-left: 20px;
  margin-top: 8px;
}

.faq-answer-inner li {
  margin-bottom: 6px;
}

/* ===== 产品下载卡片 ===== */
.download-card {
  text-align: center;
  padding: 40px 28px;
}

.download-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.download-card h3 {
  margin-bottom: 8px;
}

.download-card p {
  margin-bottom: 20px;
}

.download-card .hero-btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* ===== 表格样式 ===== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.styled-table th {
  padding: 14px 18px;
  text-align: left;
  color: #FCD957;
  font-weight: 700;
  background: rgba(252, 217, 87, 0.06);
  border-bottom: 1px solid rgba(252, 217, 87, 0.15);
}

.styled-table td {
  padding: 12px 18px;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.styled-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.styled-table .check {
  color: #4ade80;
  font-size: 18px;
}

.styled-table .cross {
  color: #666;
  font-size: 18px;
}

/* ===== 价格卡片 ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(252, 217, 87, 0.3);
  background: rgba(252, 217, 87, 0.03);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 217, 87, 0.2);
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.pricing-card .pricing-includes {
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
}

.pricing-card .price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pricing-card .price-original {
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
}

.pricing-card .price-current {
  font-size: 28px;
  font-weight: 800;
  color: #FCD957;
}

.pricing-card .price-unit {
  font-size: 13px;
  color: #888;
}

.pricing-card .price-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}

/* ===== 用户评价 ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 13px;
  font-weight: 600;
  color: #FCD957;
}

/* ===== CTA 区域 ===== */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 217, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 16px;
  color: #888;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== 标签/徽章 ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(252, 217, 87, 0.08);
  border: 1px solid rgba(252, 217, 87, 0.15);
  border-radius: 100px;
  font-size: 13px;
  color: #FCD957;
  margin-bottom: 20px;
}

/* ===== 产品平台标签 ===== */
.platform-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s;
}

.platform-tag:hover {
  border-color: rgba(252, 217, 87, 0.2);
  color: #FCD957;
  background: rgba(252, 217, 87, 0.04);
}

.platform-tag img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* ===== 链接导航行 ===== */
.link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.link-row a {
  font-size: 13px;
  color: #888;
  transition: color 0.2s;
}

.link-row a:hover {
  color: #FCD957;
}

.link-row .sep {
  color: #444;
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    background-color: rgba(22, 22, 23, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 20px 20px 32px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(252, 217, 87, 0.08);
  }

  .navbar-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 16px;
    width: 100%;
    border-radius: 10px;
    transition: background 0.2s;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 20px;
    min-width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .nav-dropdown-menu a {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #999;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #FCD957;
  }

  .nav-dropdown-divider {
    display: none;
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .navbar-actions {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
  }

  .btn-nav {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero .subtitle {
    font-size: 16px;
  }

  .page-hero .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .showcase-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-item:nth-child(even) {
    direction: ltr;
  }

  .card-grid,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-header h2 {
    font-size: 28px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-products {
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 120px 16px 48px;
  }

  .page-hero h1 {
    font-size: 26px;
  }
}
