/* ============================
   RAYPRO CONSULTING - MAIN CSS
   ============================ */

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

:root {
  --primary: #1a3a5c;
  --primary-light: #1a6b5c;
  --accent: #2ecc8e;
  --accent-blue: #3a5fd9;
  --dark: #0f1e2d;
  --gray: #f5f7f6;
  --gray-mid: #e3e8e6;
  --text: #2d3d4b;
  --text-light: #6b7d80;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-hover: 0 8px 40px rgba(26,107,92,0.18);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-en: 'Inter', sans-serif;
  --font-cn: 'Noto Sans SC', sans-serif;
  /* RAIBOO Logo 渐变 */
  --logo-grad: linear-gradient(135deg, #3a5fd9 0%, #1a6b5c 100%);
  --hero-grad: linear-gradient(135deg, #0f1e2d 0%, #1a3a5c 45%, #1a4d3a 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-cn), var(--font-en);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.section-pad { padding: 88px 0; }
.bg-gray { background: var(--gray); }

/* ---- Typography ---- */
.section-tag {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.section-header.space-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.link-arrow {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.link-arrow:hover { color: var(--accent); transform: translateX(4px); }
.link-arrow.sm { font-size: 13px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary.sm { padding: 10px 22px; font-size: 13px; }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.btn-white:hover { background: var(--gray); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,30,45,0.96);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15,30,45,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #5a8af5 0%, #2ecc8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  -webkit-text-fill-color: rgba(255,255,255,0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-links > a,
.nav-dropdown > a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-dropdown > a:hover,
.nav-links > a.active { color: white; background: rgba(255,255,255,0.12); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown .arrow { font-size: 10px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--gray); color: var(--primary); }

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

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
  font-family: var(--font-en);
}
.lang-btn:hover { border-color: white; color: white; }

.cta-btn {
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-btn:hover { background: #27b87e; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,45,0.80) 0%, rgba(26,58,92,0.73) 50%, rgba(26,77,92,0.80) 100%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent-blue);
  bottom: -100px; left: 200px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #fff;
  top: 30%; right: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-tag {
  display: inline-block;
  background: rgba(46,204,142,0.15);
  border: 1px solid rgba(46,204,142,0.35);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: var(--font-en);
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title .accent { color: var(--accent); }

.hero-tag-en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-desc strong { color: white; font-weight: 600; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  font-family: var(--font-en);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollAnim 1.6s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: linear-gradient(135deg, #1a3a5c 0%, #1a4d3a 100%);
  padding: 40px 0;
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 8px 48px;
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================
   WHO WE ARE
   ============================ */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-left { padding-right: 16px; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p { font-size: 13px; line-height: 1.6; }

.card-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
}
.card-blue .card-icon { font-size: 28px; margin-bottom: 12px; }
.card-blue h3 { color: white; }
.card-blue p { color: rgba(255,255,255,0.75); }

.card-light {
  background: var(--gray);
  color: var(--text);
}
.card-light .card-icon { font-size: 28px; margin-bottom: 12px; }
.card-light h3 { color: var(--dark); }
.card-light p { color: var(--text-light); }

.card-dark {
  background: var(--dark);
  color: white;
}
.card-dark .card-icon { font-size: 28px; margin-bottom: 12px; }
.card-dark h3 { color: white; }
.card-dark p { color: rgba(255,255,255,0.65); }

/* ============================
   SERVICES
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  position: relative;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: white;
}

.featured-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.service-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.service-card:not(.service-card-featured) .service-icon { color: var(--primary); }
.service-card-featured .service-icon { color: rgba(255,255,255,0.85); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card-featured h3 { color: white; }

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card-featured p { color: rgba(255,255,255,0.75); }

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
  display: inline-block;
}
.service-card-featured .service-link { color: var(--accent); }
.service-link:hover { transform: translateX(4px); }

/* ============================
   REGIONS
   ============================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.region-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.region-na {
  background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 100%);
}
.region-eu {
  background: linear-gradient(135deg, #1d4035 0%, #2e7d5b 100%);
}
.region-sea {
  background: linear-gradient(135deg, #3d2a1a 0%, #a0522d 100%);
}
.region-me {
  background: linear-gradient(135deg, #3d2800 0%, #c47d00 100%);
}

.region-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.region-label {
  position: relative;
  z-index: 1;
}

.region-en {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.region-zh {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.region-body {
  background: white;
  padding: 16px 20px;
}
.region-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================
   INDUSTRIES
   ============================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-item {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  cursor: default;
}
.industry-item:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.ind-icon { font-size: 24px; flex-shrink: 0; }

/* ============================
   INSIGHTS
   ============================ */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.insight-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  background: white;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }

.insight-featured {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.insight-tag-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 24px 0;
  color: var(--text-light);
}
.insight-featured .insight-tag-label {
  color: var(--accent);
  padding: 28px 28px 0;
}

.insight-body {
  padding: 16px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-featured .insight-body { padding: 16px 28px 36px; }

.insight-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.insight-featured h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
}

.insight-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.insight-featured p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.desktop-only { display: block; }
.mobile-link { display: none; text-align: center; margin-top: 32px; }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

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

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-main {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #5a8af5 0%, #2ecc8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.footer-logo-sub {
  font-family: var(--font-en);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-style: italic;
}

.footer-about {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.social-btn:hover { color: white; border-color: rgba(255,255,255,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================
   ABOUT PAGE
   ============================ */
.page-hero {
  background: var(--hero-grad);
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.story-section {
  padding: 88px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-block {
  background: var(--primary);
  border-radius: 16px;
  padding: 48px 40px;
  color: white;
}

.story-block h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.story-block p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
}
.story-badge .badge-num { font-size: 36px; line-height: 1; }
.story-badge .badge-text { font-size: 12px; font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: white;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================
   SERVICES PAGE
   ============================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-detail-grid.reverse { direction: rtl; }
.services-detail-grid.reverse > * { direction: ltr; }

.service-detail-visual {
  background: var(--primary);
  border-radius: 16px;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.service-detail-visual .service-icon-large {
  font-size: 64px;
  margin-bottom: 20px;
}
.service-detail-visual h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.service-detail-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
}

.service-detail-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; letter-spacing: 0.5px; }
.contact-item p { font-size: 14px; color: var(--dark); font-weight: 500; }

.contact-form {
  background: white;
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-cn), var(--font-en);
  color: var(--dark);
  background: var(--gray);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(21,96,168,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-cn), var(--font-en);
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  padding: 80px 24px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.mobile-menu a:hover { color: white; padding-left: 8px; }

.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .nav-links, .nav-right .cta-btn, .nav-right .lang-btn { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 8px; }

  .hero-title { font-size: 38px; }
  .hero-btns { flex-direction: column; }

  .stats-bar .container { gap: 0; }
  .stat-item { min-width: 120px; padding: 12px 20px; }
  .stat-divider { display: none; }

  .section-grid, .story-grid, .services-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-detail-grid.reverse { direction: ltr; }
  .section-left { padding-right: 0; }

  .about-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .section-header.space-between { flex-direction: column; align-items: flex-start; gap: 8px; }
  .desktop-only { display: none; }
  .mobile-link { display: block; }

  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== PEOPLE SHOWCASE ========== */
.people-showcase {
  padding: 60px 0;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.showcase-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,58,92,0.08);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: var(--transition);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(26,58,92,0.15);
}

.showcase-image {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.showcase-placeholder svg {
  width: 80px;
  height: 80px;
}

.showcase-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.showcase-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.showcase-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .showcase-container {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    grid-template-columns: 1fr;
  }
  .showcase-image {
    height: 200px;
  }
}
