:root {
  --primary: #0a7e8c;
  --primary-dark: #065a64;
  --accent-green: #4caf50;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-gray: #6b7280;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.nav-item > a:hover,
.nav-contact-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  transition: transform 0.2s;
}

.nav-item:not(:has(.dropdown-menu)) > a::after {
  display: none;
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.dropdown-menu a .dd-icon {
  margin-right: 10px;
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: var(--primary);
  color: var(--white);
}

.mobile-menu .mobile-sub {
  padding-left: 24px;
}

.mobile-menu .mobile-sub a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.mobile-menu .mobile-sub a:hover {
  color: var(--white);
}

.mobile-menu .mobile-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 16px 8px;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 40%, #f0fdf4 100%);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  gap: 48px;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.carousel-slide .hero-content {
  flex: 1;
  padding-left: 0;
}

.carousel-slide .hero-visual {
  flex: 1.4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  padding-left: 60px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(10, 126, 140, 0.08);
  border: 1px solid rgba(10, 126, 140, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  /* letter-spacing: 0.05em; */
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-content h1 {
  /* font-size: clamp(32px, 4vw, 52px);
        font-weight: 800;
        line-height: 1.15;
        color: var(--text-dark);
        margin-bottom: 20px; */
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.hero-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 126, 140, 0.35);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.hero-btn:hover svg {
  transform: translateX(3px);
}

.hero-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.device-mockup {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-mockup img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.carousel-slide:hover .device-mockup img {
  transform: scale(1.02);
}

/* Signal waves animation */
.signal-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: -1;
}

.signal-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  border: 2px solid rgba(10, 126, 140, 0.15);
  border-radius: 50%;
  opacity: 0;
  animation: signal-expand 3s infinite;
}

.signal-wave:nth-child(1) {
  width: 50%;
  height: 50%;
  animation-delay: 0s;
}
.signal-wave:nth-child(2) {
  width: 65%;
  height: 65%;
  animation-delay: 0.6s;
}
.signal-wave:nth-child(3) {
  width: 80%;
  height: 80%;
  animation-delay: 1.2s;
}
.signal-wave:nth-child(4) {
  width: 100%;
  height: 100%;
  animation-delay: 1.8s;
}

@keyframes signal-expand {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Carousel navigation */
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 126, 140, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.carousel-arrow.prev {
  left: 20px;
}
.carousel-arrow.next {
  right: 20px;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* ========== STATS SECTION ========== */
.stats-section {
  padding: 80px 60px;
  background: var(--white);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.stats-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.stats-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.stats-section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.stats-map-container {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stats-map-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.stats-map-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.stats-map-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

#worldMap {
  width: 100%;
  height: 380px;
  flex-shrink: 0;
}
/* Country Info Card */
.country-info-card {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  padding: 24px;
  color: white;
  min-height: 120px;
  transition: all 0.4s ease;
}

.country-info-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.country-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.country-stat {
  text-align: center;
}

.country-stat-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.country-stat-label {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

/* Leaderboard */
.leaderboard {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.leaderboard-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.leaderboard-title svg {
  width: 22px;
  height: 22px;
  fill: #f59e0b;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table thead th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.leaderboard-table thead th:last-child {
  text-align: right;
}

.leaderboard-table tbody tr {
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-table tbody tr:last-child {
  border-bottom: none;
}

.leaderboard-table tbody tr:hover {
  background: var(--bg-light);
}

.leaderboard-table tbody td {
  padding: 14px 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.leaderboard-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.rank-1 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.rank-2 {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
}
.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
}
.rank-4,
.rank-5 {
  background: var(--border-color);
  color: var(--text-gray);
}

.country-flag {
  display: inline-block;
  margin-right: 6px;
  font-size: 16px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  display: none;
  padding: 120px 60px 80px;
  min-height: 89vh;
  background: var(--light-bg);
}

.contact-section.active {
  display: block;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.contact-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(10, 126, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon.messenger:hover {
  background: #0099ff;
  border-color: #0099ff;
}
.social-icon.messenger:hover svg {
  fill: white;
}
.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}
.social-icon.youtube:hover svg {
  fill: white;
}
.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.social-icon.facebook:hover svg {
  fill: white;
}
.social-icon.instagram {
  color: #E4405F; /* 正常状态：Instagram 品牌色 */
  transition: color 0.3s ease;
}
.social-icon.instagram:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
}
/*  
.social-icon.instagram:hover svg {
 filter: invert(1); 
} */


.footer-info {
  font-size: 13px;
  color: var(--text-light);
  flex-grow: 1;
  text-align: center;
}

/* ========== PAGE VIEWS SECTION ========== */
.page-views-section {
  padding: 80px 60px;
  background: #f8fafc;
}
.page-views-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-views-header {
  text-align: center;
  margin-bottom: 48px;
}
.page-views-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.page-views-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pv-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 126, 140, 0.1);
}
.pv-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -1px;
}
.pv-unit {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 4px;
}
.pv-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 8px;
  line-height: 1.4;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pv-card .pv-value {
  animation: countUp 0.8s ease-out forwards;
}
.pv-card:nth-child(2) .pv-value {
  animation-delay: 0.1s;
}
.pv-card:nth-child(3) .pv-value {
  animation-delay: 0.2s;
}
.pv-card:nth-child(4) .pv-value {
  animation-delay: 0.3s;
}
.tooltip-text {
  display: inline-block;
  width: 100px;              /* 固定宽度 */
  /* 1. 基础两端对齐 */
  text-align: justify;
  text-align-last: left; /* 确保最后一行正常左对齐，防止最后几个词被扯得太开 */

  /* 2. 核心：允许长单词或连续字符在内部断行（防止撑破布局或留下大空白） */
  word-break: break-word; /* 优先在单词间断行，实在不行才断开单词 */
  
  /* 3. 进阶：自动添加连字符（选配） */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .carousel-slide {
    flex-direction: column;
    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
  }

  .carousel-slide > * {
    max-width: 100%;
  }

  .carousel-inner {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-content {
    padding-right: 0;
    padding-left: 0;
    order: 1;
    flex: none;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-visual {
    order: 0;
    flex: none;
    width: 100%;
    height: auto;
    max-height: 30vh;
    overflow: hidden;
  }

  .device-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .device-mockup img {
    max-height: 30vh;
    max-width: 100%;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .carousel-slide {
    flex-direction: column;
    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
  }

  .carousel-slide > * {
    max-width: 100%;
  }

  .carousel-inner {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-content {
    padding-right: 0;
    padding-left: 0;
    order: 1;
    flex: none;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-visual {
    order: 0;
    flex: none;
    width: 100%;
    height: auto;
    max-height: 30vh;
    overflow: hidden;
  }

  .device-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .device-mockup img {
    max-height: 30vh;
    max-width: 100%;
    object-fit: contain;
  }

  .signal-waves {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .stats-section {
    padding: 40px 20px;
  }

  .stats-section-inner {
    grid-template-columns: 1fr;
  }

  #worldMap {
    height: 280px;
  }

  .page-views-section {
    padding: 40px 20px;
  }
  .page-views-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pv-value {
    font-size: 28px;
  }

  .contact-section {
    padding: 100px 20px 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-image {
    order: 2;
  }

  .contact-image img {
    max-width: 100%;
  }

  .contact-info {
    order: 1;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-item {
    justify-content: flex-start;
    align-items: flex-start;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-detail {
    text-align: left;
  }
}
