/* ============================================================
   GoBuy China Website — Main Stylesheet (Mobile-First)
   Polished, modern design with gradient accents
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #0A2540;
  --color-primary-dark: #06192d;
  --color-primary-light: #f0f4f8;
  --color-secondary: #ff6b35;
  --color-secondary-dark: #e55a28;
  --color-accent: #3A89FF;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0A2540;
  --color-text: #0A2540;
  --color-text-light: #475569;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;
  --max-width: 1200px;
  --header-height: 80px;
  --spacing-section: 120px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 12px rgba(10,37,64,0.04);
  --shadow: 0 10px 30px rgba(10,37,64,0.06), 0 2px 8px rgba(10,37,64,0.04);
  --shadow-lg: 0 24px 60px rgba(10,37,64,0.1), 0 8px 24px rgba(10,37,64,0.05);
  --shadow-xl: 0 32px 80px rgba(10,37,64,0.12);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --gradient-primary: linear-gradient(135deg, #3A89FF 0%, #0A2540 100%);
  --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #ff8f66 100%);
  --gradient-dark: linear-gradient(135deg, #0A2540 0%, #173252 100%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Dark mode variables */
[data-theme="dark"] {
  --color-bg: #0f172a;
  --color-bg-alt: #1e293b;
  --color-bg-dark: #020617;
  --color-text: #f1f5f9;
  --color-text-light: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-border: #334155;
  --color-primary-light: #1e293b;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
  --shadow: 0 10px 30px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.6);
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: 1px solid rgba(51, 65, 85, 0.8);
}

/* Dark mode specific adjustments */
[data-theme="dark"] .hero__bg {
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

[data-theme="dark"] .market__decree,
[data-theme="dark"] .awards__certification {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

[data-theme="dark"] .platform__consumer {
  background: linear-gradient(135deg, #1e3a1e, #2d4a2d);
  border-color: rgba(76, 175, 80, 0.2);
}

[data-theme="dark"] .platform__consumer p {
  color: #81c784;
}

[data-theme="dark"] .footer {
  background: #020617;
}

[data-theme="dark"] .about__image {
  background: linear-gradient(135deg, #1e293b, #334155);
}

[data-theme="dark"] .mcn__logo {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-color: #334155;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section--alt {
  background: var(--color-bg-alt);
}

/* Section title decoration */
.section h2,
#market h2,
#painpoints h2,
#platform h2,
#advantages h2,
#howitworks h2,
#moats h2,
#awards h2,
#mcn h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  text-align: center;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* Section subtitle / decorative line */
.section h2::after,
#market h2::after,
#painpoints h2::after,
#platform h2::after,
#advantages h2::after,
#howitworks h2::after,
#moats h2::after,
#awards h2::after,
#mcn h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 16px auto 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  min-height: 52px;
  min-width: 52px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-warm);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.btn--outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

.btn--cta {
  background: var(--gradient-warm);
  color: #fff;
  border-color: transparent;
  font-size: 0.875rem;
  padding: 10px 24px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.25);
}

.btn--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.header--scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header--scrolled .nav__links a {
  color: var(--color-text);
}

.header--scrolled .logo {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) brightness(1.2);
  transition: filter var(--transition);
}

.header--scrolled .logo {
  filter: none;
}

.nav__links {
  display: none;
  gap: 2px;
}

.nav__links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav__links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.header--scrolled .nav__links a {
  color: var(--color-text);
  text-shadow: none;
}

.header--scrolled .nav__links a:hover {
  background: rgba(26, 115, 232, 0.08);
  color: var(--color-primary);
}

.nav__links a.active {
  background: rgba(58, 137, 255, 0.2);
  color: #fff;
  font-weight: 600;
}

.header--scrolled .nav__links a.active {
  background: rgba(58, 137, 255, 0.12);
  color: var(--color-accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Settings Group - Combined Button Group */
.settings-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 0;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.header--scrolled .settings-group {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
  backdrop-filter: none;
}

.settings-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 4px;
  user-select: none;
}

.header--scrolled .settings-divider {
  color: var(--color-border);
}

/* Theme Dropdown */
.theme-dropdown,
.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-toggle,
.lang-toggle {
  background: transparent;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}

.header--scrolled .theme-toggle,
.header--scrolled .lang-toggle {
  color: var(--color-text);
}

.theme-toggle:hover,
.lang-toggle:hover {
  transform: scale(1.1);
}

.theme-icon,
.lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  line-height: 1;
  width: 24px;
  height: 24px;
}

.theme-toggle:active .theme-icon,
.lang-toggle:active .lang-icon {
  transform: scale(0.9);
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 1002;
}

.theme-toggle:hover .tooltip,
.lang-toggle:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -36px;
}

/* Dropdown Menus */
.theme-menu,
.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1001;
  pointer-events: none;
}

/* Arrow pointer */
.theme-menu::before,
.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-bg);
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.05));
}

.theme-dropdown.active .theme-menu,
.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.lang-menu {
  min-width: 180px;
}

/* Theme Options */
.theme-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  margin-bottom: 6px;
}

.theme-option:last-child {
  margin-bottom: 0;
}

.theme-option.active {
  background: rgba(58, 137, 255, 0.1);
}

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

.theme-option-text {
  flex: 1;
}

/* Light mode - default styles */
.theme-option-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0A2540 !important;
  margin-bottom: 2px;
}

.theme-option-desc {
  font-size: 0.75rem;
  color: #1e293b !important;
  line-height: 1.3;
}

.theme-option:hover {
  background: #e0e7ff;
  transform: translateX(2px);
}

.theme-option:hover .theme-option-title {
  color: #0A2540 !important;
}

.theme-option:hover .theme-option-desc {
  color: #0f172a !important;
}

/* Dark mode specific fixes for dropdown menus */
[data-theme="dark"] .theme-menu,
[data-theme="dark"] .lang-menu {
  background: #0f172a;
  border-color: #475569;
}

[data-theme="dark"] .theme-option-title {
  color: #ffffff;
}

[data-theme="dark"] .theme-option-desc {
  color: #cbd5e1;
}

[data-theme="dark"] .theme-option:hover {
  background: #1e293b;
}

[data-theme="dark"] .theme-option:hover .theme-option-title {
  color: #ffffff;
}

[data-theme="dark"] .theme-option:hover .theme-option-desc {
  color: #e2e8f0;
}

[data-theme="dark"] .theme-option:hover {
  background: #1e293b;
}

[data-theme="dark"] .theme-option:hover .theme-option-title {
  color: #ffffff;
}

[data-theme="dark"] .theme-option:hover .theme-option-desc {
  color: #e2e8f0;
}

[data-theme="dark"] .lang-option:hover {
  background: #1e293b;
}

[data-theme="dark"] .lang-option:hover .lang-name {
  color: #ffffff;
}

[data-theme="dark"] .theme-option.active {
  background: rgba(58, 137, 255, 0.2);
}

[data-theme="dark"] .lang-option.active {
  background: rgba(58, 137, 255, 0.2);
}

/* Language Options */
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  margin-bottom: 6px;
}

.lang-option:last-child {
  margin-bottom: 0;
}

.lang-option:hover {
  background: #e0e7ff;
  transform: translateX(2px);
}

.lang-option.active {
  background: rgba(58, 137, 255, 0.1);
}

.lang-flag {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.lang-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0A2540 !important;
}

.nav__actions .btn--cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition),
    background var(--transition);
}

.header--scrolled .hamburger span {
  background: var(--color-text);
}

.nav--open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav--open .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav--open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: var(--glass-border);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  gap: 2px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.nav--open .nav__links a {
  color: var(--color-text);
  padding: 14px 16px;
  font-size: 1rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
}

.nav--open .nav__links a:hover {
  background: var(--color-bg-alt);
}


/* ============================================================
   HERO SECTION — Full-screen immersive
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 0;
}

/* Decorative floating shapes */
.hero__bg::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.hero__bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(58, 137, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(60px);
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 140px 20px 80px;
  max-width: 800px;
}

.hero__content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 24px rgba(255, 255, 255, 0.2);
  max-width: 100%;
}

/* Better line breaking for English title */
html[lang="en"] .hero__content h1 {
  font-size: 2.2rem;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
}

.hero__sub {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 400;
}

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


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about__text h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  color: var(--color-text);
  text-align: left;
}

.about__text h2::after {
  margin: 16px 0 32px;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.9;
  font-size: 0.95rem;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ef, #c8d6e5);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

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


/* ============================================================
   MARKET DATA SECTION
   ============================================================ */
#market h3 {
  font-size: 1.2rem;
  margin: 48px 0 24px;
  text-align: center;
  color: var(--color-text-light);
  font-weight: 600;
}

.market__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.market__card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.market__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.market__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.market__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.market__number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.market__unit {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.market__label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 8px;
  line-height: 1.5;
}

/* Category growth */
.market__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
}

.market__category {
  text-align: center;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border: var(--glass-border);
  transition: all var(--transition);
}

.market__category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.market__cat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.market__cat-name {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.market__cat-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decree callout */
.market__decree {
  margin-top: 56px;
  background: var(--gradient-dark);
  border-top: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.market__decree::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.market__decree-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.market__decree h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.market__decree p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Opportunity / Funnel */
.market__opportunity {
  margin-top: 48px;
}

.market__funnel {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(58, 137, 255, 0.2);
}

.market__funnel::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.market__funnel h3 {
  color: #ffffff;
  margin: 0 0 16px;
  font-size: 1.6rem;
  position: relative;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.market__funnel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
}


/* ============================================================
   PAIN POINTS SECTION
   ============================================================ */
.painpoints__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.painpoints__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.painpoints__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.painpoints__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.painpoints__card:hover::after {
  transform: scaleX(1);
}

.painpoints__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.painpoints__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-text);
}

.painpoints__stats {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid var(--color-border);
}

.painpoints__stats p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 500;
}

.painpoints__stats p + p {
  margin-top: 6px;
}

.painpoints__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* ============================================================
   PLATFORM SECTION
   ============================================================ */
/* S-VIP-C Pillars */
.platform__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.platform__pillar {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.platform__pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.platform__pillar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

.platform__pillar h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.platform__pillar p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Value propositions */
.platform__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.platform__value {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.platform__value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.platform__value-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}

.platform__value h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.platform__value p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Consumer note */
.platform__consumer {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  border: 1px solid rgba(46, 125, 50, 0.12);
}

.platform__consumer p {
  font-size: 0.95rem;
  color: #2e7d32;
  line-height: 1.8;
}

.platform__consumer strong {
  font-weight: 700;
}


/* ============================================================
   ADVANTAGES SECTION
   ============================================================ */
.advantages__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantages__card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.advantages__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.advantages__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.advantages__card:hover::before {
  transform: scaleX(1);
}

.advantages__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.advantages__card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.advantages__card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.howitworks__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.howitworks__step {
  text-align: center;
  max-width: 260px;
  padding: 24px 16px;
}

.howitworks__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.25);
}

.howitworks__step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.howitworks__step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.howitworks__arrow {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  opacity: 0.4;
}

.howitworks__cta {
  text-align: center;
  margin-top: 48px;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.services__card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.services__card:hover::before {
  transform: scaleX(1);
}

.services__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.services__card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.services__card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* ============================================================
   MOATS SECTION
   ============================================================ */
.moats__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.moats__card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
}

.moats__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.moats__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.moats__card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.moats__data {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.moats__card > p:last-child {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* ============================================================
   AWARDS SECTION
   ============================================================ */
.awards__certification {
  background: linear-gradient(135deg, #0A2540, #173252);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 213, 79, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.15);
}

.awards__certification::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.awards__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.awards__logo {
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}

.awards__logo:hover {
  transform: translateY(-2px);
}

.awards__certification h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #ffd54f;
  position: relative;
}

.awards__certification p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* Awards Highlight Section */
.awards__highlight {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.awards__highlight-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.awards__highlight-image img {
  width: 100%;
  height: auto;
  display: block;
}

.awards__highlight-text h3 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 700;
}

.awards__highlight-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.awards__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

/* Marquee animation for awards list */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.awards__list-wrapper {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.awards__list-wrapper:hover {
  animation-play-state: paused;
}

.awards__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg);
  border-radius: 100px;
  padding: 18px 28px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: fit-content;
}

.awards__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.awards__item .awards__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.awards__item p {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.awards__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.awards__supply,
.awards__logistics {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(10,37,64,0.03);
}

.awards__supply h3,
.awards__logistics h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.awards__supply p,
.awards__logistics p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* ============================================================
   MCN SECTION
   ============================================================ */
.mcn__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.mcn__logo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 5px solid #fff;
}

.mcn__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.mcn__info {
  text-align: center;
}

.mcn__info > p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mcn__achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.mcn__services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .mcn__services {
    flex-direction: row;
  }
  .mcn__service-card {
    flex: 1;
  }
}

.mcn__service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.mcn__service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mcn__service-title {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.mcn__service-desc {
  font-size: 0.95rem;
  color: #64748b;
  margin: 8px 0 0 0;
  line-height: 1.5;
}

.mcn__achievement {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to right, #ffffff, #f8fafc);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.05);
}

.mcn__achievement-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.mcn__achievement p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.footer h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  text-align: center;
  color: #fff;
}

.footer h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-warm);
  border-radius: 2px;
  margin: 16px auto 40px;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer__offices {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__office p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer__contact p {
  font-size: 0.9rem;
}

.footer__contact a {
  color: #6cb4ff;
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: #a0d0ff;
}

.footer__wechat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
}

.footer__wechat img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: #fff;
  object-fit: contain;
  padding: 8px;
  flex-shrink: 0;
}

.footer__wechat-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__wechat-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer__wechat-search {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 20px;
  display: inline-block;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer__icp,
.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   FLOATING ACTION BUTTONS (FAB) - Vertical Button Group
   ============================================================ */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  z-index: 999;
  overflow: visible;
}

[data-theme="dark"] .fab-group {
  background: rgba(15, 23, 42, 0.95);
  border-color: #334155;
}

.fab-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
  overflow: visible;
}

.fab-button:hover {
  background: var(--color-bg-alt);
  transform: scale(1.1);
}

.fab-button:active {
  transform: scale(0.95);
}

.fab-divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 8px;
}

/* Back to top button - hidden by default */
.fab-back-to-top {
  display: none;
}

.fab-back-to-top.visible {
  display: flex;
}

.fab-back-to-top-divider {
  display: none;
}

/* FAB Tooltip */
.fab-button .tooltip {
  position: absolute;
  left: auto;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 1003;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-button .tooltip::after {
  content: "";
  position: absolute;
  left: auto;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid #1e293b;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.fab-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* FAB Dropdown Menus */
.fab-theme-dropdown,
.fab-lang-dropdown {
  position: relative;
}

.fab-theme-menu,
.fab-lang-menu {
  position: absolute;
  bottom: 0;
  right: calc(100% + 16px);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--transition);
  z-index: 1001;
  pointer-events: none;
}

.fab-lang-menu {
  min-width: 180px;
}

/* Arrow pointer for FAB menus */
.fab-theme-menu::after,
.fab-lang-menu::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-bg);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  filter: drop-shadow(1px 0 1px rgba(0, 0, 0, 0.05));
}

.fab-theme-dropdown.active .fab-theme-menu,
.fab-lang-dropdown.active .fab-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .fab-group {
    bottom: 24px;
    right: 24px;
    padding: 6px;
  }
  
  .fab-button {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .fab-theme-menu,
  .fab-lang-menu {
    right: calc(100% + 12px);
    min-width: 220px;
  }
  
  .fab-lang-menu {
    min-width: 160px;
  }
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- Small phones (320px–374px) ---------- */
@media (max-width: 374px) {
  .hero__content h1 {
    font-size: 1.75rem;
    word-break: break-word;
  }
  .hero__sub {
    font-size: 0.9rem;
  }
  .market__cards {
    grid-template-columns: 1fr;
  }
  .platform__pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- 375px: Standard Phone ---------- */
@media (min-width: 375px) {
  .hero__content h1 {
    font-size: 2.5rem;
  }
  
  html[lang="en"] .hero__content h1 {
    font-size: 2.3rem;
  }
  
  .market__number {
    font-size: 2.4rem;
  }
}

/* ---------- 768px: Tablet ---------- */
@media (min-width: 768px) {
  :root {
    --spacing-section: 120px;
  }

  .container {
    padding: 0 40px;
  }

  /* Nav */
  .nav__links {
    display: flex;
    align-items: center;
  }
  .hamburger {
    display: none;
  }

  /* Hero */
  .hero__content h1 {
    font-size: 3rem;
  }
  
  html[lang="en"] .hero__content h1 {
    font-size: 2.8rem;
  }
  
  .hero__sub {
    font-size: 1.15rem;
  }

  /* About */
  .about__grid {
    flex-direction: row;
    align-items: center;
  }
  .about__text {
    flex: 3;
  }
  .about__image {
    flex: 2;
  }

  /* Market */
  .market__cards {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Pain Points */
  .painpoints__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Platform */
  .platform__pillars {
    grid-template-columns: repeat(4, 1fr);
  }
  .platform__values {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Advantages */
  .advantages__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* How It Works */
  .howitworks__steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .howitworks__arrow {
    display: flex;
    align-items: center;
    padding-top: 16px;
  }
  .howitworks__step {
    flex: 1;
    max-width: 200px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Moats */
  .moats__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Awards */
  .awards__highlight {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  
  .awards__highlight-image {
    flex: 0 0 40%;
    max-width: 400px;
  }
  
  .awards__highlight-text {
    flex: 1;
  }
  
  /* Keep marquee effect on desktop */
  .awards__list {
    overflow: hidden;
  }

  /* MCN */
  .mcn__content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .mcn__info {
    text-align: left;
  }
  .mcn__logo {
    width: 200px;
    height: 200px;
  }

  /* Footer */
  /* Footer & Awards specific grid */
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .awards__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ---------- 1024px: Small Desktop ---------- */
@media (min-width: 1024px) {
  .hero__content h1 {
    font-size: 3.5rem;
  }
  
  html[lang="en"] .hero__content h1 {
    font-size: 3.2rem;
  }
  
  .hero__sub {
    font-size: 1.25rem;
    max-width: 700px;
  }
  .nav__links a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .moats__cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .advantages__cards {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .section h2,
  #market h2,
  #painpoints h2,
  #platform h2,
  #advantages h2,
  #howitworks h2,
  #moats h2,
  #awards h2,
  #mcn h2,
  .footer h2 {
    font-size: 2.25rem;
  }

  .about__text h2 {
    font-size: 2.25rem;
  }
}

/* ---------- 1440px: Standard Desktop ---------- */
@media (min-width: 1440px) {
  .container {
    padding: 0 48px;
  }
  
  .hero__content h1 {
    font-size: 4rem;
  }
  
  html[lang="en"] .hero__content h1 {
    font-size: 3.8rem;
  }
}
