@charset "utf-8";

/* ====================================================
   PETO SPACE — 磐土空间 共用样式
   设计参考: GFI (https://www.gfi-aegis.com/cn/)
   ==================================================== */

/* ── CSS 变量 ── */
:root {
  --primary:        #00AAFF;
  --primary-light:  #00D6FF;
  --secondary:      #0C63F0;
  --secondary-dark: #001455;
  --gray-lighter:   #f4f4f4;
  --gray-light:     #e6e6e6;
  --gray:           #cfcfcf;
  --gray-dark:      #6e6e73;
  --text-body:      #4F4F4F;
  --text-dark:      #1a1a1a;

  --font-primary:   "Noto Sans SC", sans-serif;
  --font-secondary: "Montserrat", "Noto Sans SC", sans-serif;

  --container-width: 1290px;
  --container-wide:  1560px;

  --easing1: cubic-bezier(.85,.14,.29,.99);
  --easing2: cubic-bezier(.71,.45,.36,1.31);

  --header-h: 92px;
}

/* ── 基础 ── */
body {
  font-family: var(--font-primary);
  color: var(--text-body);
  word-break: normal;
}

::selection {
  background: var(--primary-light);
  color: #fff;
}

::-webkit-scrollbar { width: 5px; height: 5px; background: #dfdfdf; }
::-webkit-scrollbar-thumb { background: var(--primary); }

/* ── 容器 ── */
.container {
  width: var(--container-width);
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
.container-wide {
  width: var(--container-wide);
  max-width: calc(100% - 100px);
  margin: 0 auto;
}

/* ── 通用颜色工具 ── */
.fc--white  { color: #fff !important; }
.fc--primary { color: var(--primary) !important; }
.bc--primary { background: var(--primary) !important; }
.bc--dark    { background: var(--secondary-dark) !important; }

/* ── 字体工具 ── */
.ff--secondary { font-family: var(--font-secondary) !important; }
.fw--300 { font-weight: 300 !important; }
.fw--400 { font-weight: 400 !important; }
.fw--500 { font-weight: 500 !important; }
.fw--600 { font-weight: 600 !important; }
.fw--700 { font-weight: 700 !important; }
.tt--u { text-transform: uppercase !important; }

.pc-br { display: block; }
.m-br  { display: none; }

/* ── 箭头图标 ── */
.arrow {
  display: block; width: 10px; height: 10px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
}
.arrow.right { transform: rotate(45deg); }
.arrow.left  { transform: rotate(-135deg); }
.arrow.up    { transform: rotate(-45deg); }
.arrow.down  { transform: rotate(135deg); }

.ico--plus, .ico--times {
  display: block; position: relative; width: 24px; height: 24px;
}
.ico--plus::before, .ico--plus::after,
.ico--times::before, .ico--times::after {
  content: ''; display: block; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: currentColor;
}
.ico--plus::after  { width: 100%; height: 1px; }
.ico--plus::before { width: 1px; height: 100%; }
.ico--times { transform: rotate(45deg); }
.ico--times::after  { width: 100%; height: 1px; }
.ico--times::before { width: 1px; height: 100%; }

/* ── 按钮系统 ── */
.peto-btn {
  --base:  var(--secondary);
  --hover: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0.85em 1.8em;
  background: var(--base); border-radius: 30px;
  font-size: 16px; font-weight: 600; color: #fff;
  transition: background .3s var(--easing1);
  font-family: var(--font-secondary);
  cursor: pointer;
}
.peto-btn:hover { background: var(--hover); }
.peto-btn.type--white  { background: #fff; color: var(--secondary-dark); }
.peto-btn.type--white:hover { background: var(--primary); color: #fff; }
.peto-btn.type--outline {
  background: transparent; border: 1.5px solid #fff; color: #fff;
}
.peto-btn.type--outline:hover { background: #fff; color: var(--secondary-dark); }
.peto-btn.type--dark { --base: var(--secondary-dark); }

.btn-more {
  display: inline-flex; align-items: center; gap: 0.8em;
  font-size: 16px; font-weight: 500; padding-bottom: 0.4em;
  border-bottom: 1px solid rgba(255,255,255,.5); color: #fff;
  font-family: var(--font-secondary); transition: border-color .3s, opacity .3s;
}
.btn-more::after {
  content: ''; width: 0.45em; height: 0.45em;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  display: block; flex-shrink: 0; transform: rotate(45deg);
}
.btn-more:hover { opacity: .75; }
.btn-more.dark { color: var(--secondary-dark); border-bottom-color: rgba(0,0,0,.3); }

/* ── 滚动动效 ── */
.sc-elem {
  opacity: 0;
  transition: opacity .7s var(--easing1), transform .7s var(--easing1);
}
.sc-elem.fadeup   { transform: translateY(60px); }
.sc-elem.fadeleft { transform: translateX(60px); }
.sc-elem.faderight{ transform: translateX(-60px); }
.sc-elem.fadein   { transform: none; }

.sc-elem.visible {
  opacity: 1;
  transform: none !important;
}
.sc-elem.delay-1 { transition-delay: 0.1s; }
.sc-elem.delay-2 { transition-delay: 0.2s; }
.sc-elem.delay-3 { transition-delay: 0.3s; }
.sc-elem.delay-4 { transition-delay: 0.4s; }
.sc-elem.delay-5 { transition-delay: 0.5s; }
.sc-elem.delay-6 { transition-delay: 0.6s; }

/* ====================================================
   HEADER
   ==================================================== */
.header {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 100%; height: var(--header-h);
  color: #fff;
  font-family: var(--font-secondary);
  transition: background .4s, color .4s, box-shadow .4s;
}
.header-container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  height: 100%;
  padding: 0 50px;
}

/* Logo */
.header .logo { flex-shrink: 0; }
.header .logo img { display: block; height: 36px; width: auto; }
.header .logo .logo-dark  { display: none; }
.header .logo .logo-white { display: block; }

/* GNB */
.header-gnb {
  display: flex; align-items: center;
  height: 100%; gap: 0;
}
.header-gnb-item {
  position: relative; height: 100%;
}
.header-gnb-item > a {
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 0 22px;
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
  position: relative;
}
.header-gnb-item:not(:last-child) > a::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translate(50%, -50%) skewX(-10deg);
  width: 1px; height: 1em; background: rgba(255,255,255,.3);
}

/* Dropdown */
.header-submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, -10px);
  padding: 16px 20px;
  background: var(--secondary-dark);
  border-radius: 12px;
  min-width: 180px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--easing1), transform .3s var(--easing1);
  text-align: center;
}
.header-gnb-item:hover .header-submenu {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, 0);
}
.header-submenu-item > a {
  display: block; padding: 7px 10px;
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  transition: color .2s;
}
.header-submenu-item > a:hover { color: var(--primary-light); }

/* Right side */
.header-actions {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.header-contact-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 22px; border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 20px; font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background .3s, border-color .3s, color .3s;
}
.header-contact-btn:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* 中文/EN 语言切换占位按钮 */
.lang-switch {
  display: flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 20px; overflow: hidden;
  font-size: 13px; font-weight: 500;
  flex-shrink: 0;
}
.lang-switch .lang-btn {
  padding: 7px 14px; color: currentColor; opacity: .55;
  white-space: nowrap;
  transition: opacity .25s, background .25s;
}
.lang-switch .lang-btn:hover { opacity: 1; }
.lang-switch .lang-btn.active {
  opacity: 1; background: rgba(255,255,255,.18);
}
.header.scrolled .lang-switch,
.header.header--sub .lang-switch { border-color: rgba(0,21,85,.25); }
.header.scrolled .lang-switch .lang-btn.active,
.header.header--sub .lang-switch .lang-btn.active { background: rgba(0,21,85,.08); }

/* Hamburger */
.btn-hamburger {
  display: none; flex-direction: column;
  gap: 5px; width: 30px; cursor: pointer;
}
.btn-hamburger .bar {
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}

/* Scrolled state */
.header.scrolled {
  background: #fff; color: var(--secondary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header.scrolled .header-contact-btn {
  border-color: var(--secondary-dark);
}
.header.scrolled .logo-dark  { display: block; }
.header.scrolled .logo-white { display: none; }
.header.scrolled .header-gnb-item:not(:last-child) > a::after {
  background: rgba(0,0,0,.15);
}
.header.scrolled .header-submenu-item > a { color: rgba(255,255,255,.85); }

/* Subpage: always scrolled */
.header.header--sub {
  background: #fff; color: var(--secondary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header.header--sub .logo-dark  { display: block; }
.header.header--sub .logo-white { display: none; }
.header.header--sub .header-gnb-item:not(:last-child) > a::after {
  background: rgba(0,0,0,.12);
}
.header.header--sub .header-contact-btn {
  border-color: rgba(0,21,85,.4);
}

/* ====================================================
   MOBILE NAV (侧滑面板)
   ==================================================== */
.nav-panel {
  position: fixed; top: 0; right: 0; z-index: 99999;
  width: 320px; height: 100vh;
  background: #fff; color: var(--secondary-dark);
  transform: translateX(100%);
  transition: transform .4s var(--easing1);
  overflow-y: auto;
  padding: 30px 30px 60px;
  display: flex; flex-direction: column; gap: 0;
}
.nav-panel.open { transform: translateX(0); }

.nav-panel-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nav-panel-overlay.open { opacity: 1; pointer-events: auto; }

.nav-panel-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 40px;
}
.nav-panel-head .logo img { height: 30px; }
.nav-panel-close {
  width: 36px; height: 36px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--gray-light);
  font-size: 18px; cursor: pointer;
  transition: background .2s;
}
.nav-panel-close:hover { background: var(--gray-lighter); }

.nav-panel-menu { list-style: none; }
.nav-panel-menu > li { border-bottom: 1px solid var(--gray-light); }
.nav-panel-menu > li > a,
.nav-panel-menu > li > .trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 17px; font-weight: 600;
  color: var(--secondary-dark); cursor: pointer;
}
.nav-panel-menu > li > .trigger .ico--plus { width: 18px; height: 18px; }
.nav-panel-submenu {
  display: none; padding: 5px 0 18px 15px;
}
.nav-panel-menu > li.open .nav-panel-submenu { display: block; }
.nav-panel-menu > li.open .trigger .ico--plus { transform: rotate(45deg); }
.nav-panel-submenu a {
  display: block; padding: 8px 0;
  font-size: 15px; color: var(--gray-dark);
}
.nav-panel-submenu a:hover { color: var(--primary); }

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: #2b2b2b; color: #fff;
  font-family: var(--font-secondary);
  margin-top: auto;
}
.footer-top {
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-top .container-wide {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 60px; align-items: start;
}
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-top: 16px; line-height: 1.6; font-family: var(--font-primary);
  max-width: 180px;
}

.footer-nav { display: flex; gap: 60px; }
.footer-nav-group {}
.footer-nav-group .group-title {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-nav-group a {
  display: block; font-size: 14px; color: rgba(255,255,255,.7);
  padding: 4px 0; transition: color .2s;
  font-family: var(--font-primary);
}
.footer-nav-group a:hover { color: var(--primary-light); }

.footer-contact {}
.footer-contact .contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,.6);
  padding: 5px 0; font-family: var(--font-primary);
}
.footer-contact .contact-item .label {
  color: rgba(255,255,255,.4); flex-shrink: 0;
  min-width: 50px; font-size: 13px;
}

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container-wide {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-copyright {
  font-size: 13px; color: rgba(255,255,255,.35);
  font-family: var(--font-primary);
}
.footer-links {
  display: flex; gap: 20px;
}
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary-light); }

/* ====================================================
   SUBPAGE COMPONENTS (共用子页面组件)
   ==================================================== */

/* Hero Banner */
.sp-hero {
  position: relative; width: 100%;
  height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--secondary-dark);
  margin-top: var(--header-h);
}
.sp-hero-bg {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.05);
  animation: heroBgIn .8s var(--easing1) forwards;
}
@keyframes heroBgIn { to { transform: scale(1); } }
.sp-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,20,85,.6), rgba(0,20,85,.4));
}
.sp-hero-content {
  position: relative; z-index: 1;
  text-align: center; color: #fff;
}
.sp-hero-content .breadcrumb {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin-bottom: 20px; font-family: var(--font-primary);
}
.sp-hero-content .breadcrumb span { color: rgba(255,255,255,.4); margin: 0 6px; }
.sp-hero-content .hero-en {
  font-family: var(--font-secondary); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--primary-light);
  text-transform: uppercase; margin-bottom: 14px;
}
.sp-hero-content .hero-title {
  font-family: var(--font-secondary); font-size: 64px;
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  animation: heroTitleIn .6s .2s var(--easing1) both;
}
@keyframes heroTitleIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.sp-hero-content .hero-desc {
  font-size: 18px; color: rgba(255,255,255,.8);
  margin-top: 16px; font-family: var(--font-primary);
  animation: heroTitleIn .6s .35s var(--easing1) both;
}

/* Content Wrapper (白色卡片，覆盖 Hero 底部) */
.sp-content {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: -40px;
  padding-top: 80px;
  padding-bottom: 120px;
}
.sp-content .container { position: relative; }

/* Section 标签 + 标题 */
.sp-section { margin-bottom: 100px; }
.sp-section:last-child { margin-bottom: 0; }

.section-label {
  display: block; font-family: var(--font-secondary);
  font-size: 13px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--primary); text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-secondary);
  font-size: 44px; font-weight: 600; line-height: 1.2;
  color: var(--secondary-dark); margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 17px; line-height: 1.9; color: #666;
  max-width: 700px;
}

/* CTA Block */
.cta-block {
  background: linear-gradient(120deg, var(--secondary-dark) 0%, #0c3080 100%);
  border-radius: 20px; padding: 70px 80px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  overflow: hidden; position: relative;
  margin-top: 80px;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,170,255,.15), transparent 60%);
}
.cta-block-body { position: relative; z-index: 1; }
.cta-block .cta-label {
  font-family: var(--font-secondary); font-size: 12px;
  font-weight: 700; letter-spacing: 0.18em; color: var(--primary-light);
  text-transform: uppercase; margin-bottom: 12px;
}
.cta-block .cta-title {
  font-family: var(--font-secondary); font-size: 34px;
  font-weight: 600; color: #fff; line-height: 1.25;
  margin-bottom: 12px;
}
.cta-block .cta-desc { font-size: 16px; color: rgba(255,255,255,.7); }
.cta-block .cta-actions { position: relative; z-index: 1; flex-shrink: 0; }

/* 面包屑 */
.breadcrumb-bar {
  padding: 14px 0; font-size: 13px;
  color: var(--gray-dark); border-bottom: 1px solid var(--gray-light);
  margin-bottom: 60px;
}
.breadcrumb-bar a { color: var(--gray-dark); transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar .sep { margin: 0 8px; color: var(--gray); }
.breadcrumb-bar .current { color: var(--secondary-dark); font-weight: 500; }

/* Stats 数字 */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; margin-top: 50px;
}
.stat-card {
  text-align: center; padding: 40px 20px;
  border: 1px solid var(--gray-light); border-radius: 16px;
  background: var(--gray-lighter);
}
.stat-card .num {
  font-family: var(--font-secondary); font-size: 54px;
  font-weight: 700; color: var(--secondary);
  line-height: 1; margin-bottom: 10px;
}
.stat-card .num sup { font-size: 0.45em; }
.stat-card .label { font-size: 15px; color: #666; line-height: 1.4; }

/* Value Cards */
.value-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 50px;
}
.value-card {
  padding: 36px 40px; border-radius: 16px;
  border: 1px solid var(--gray-light);
  transition: border-color .3s, box-shadow .3s;
}
.value-card:hover {
  border-color: var(--primary); 
  box-shadow: 0 8px 30px rgba(0,170,255,.08);
}
.value-card .vc-title {
  font-family: var(--font-secondary); font-size: 20px;
  font-weight: 700; color: var(--secondary-dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}
.value-card .vc-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.value-card .vc-desc { font-size: 15px; color: #666; line-height: 1.75; }

/* ====================================================
   LNB 横向 Tab 导航栏（GFI 风格：居中悬浮胶囊）
   ==================================================== */

.lnb-bar {
  position: relative;
  width: 100%;
  z-index: 600;
  /* Pull pill up so it floats over the hero's bottom edge */
  margin-top: -38px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-bottom: 30px;
}
.lnb-bar-container {
  pointer-events: auto;
  display: flex;
  justify-content: center;
}
.lnb-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  gap: 2px;
}
.lnb-bar-wrapper a {
  white-space: nowrap;
  min-width: 130px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100px;
  padding: 0 28px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-dark);
  transition: color .2s, background .2s;
}
.lnb-bar-wrapper a:hover { color: var(--primary); }
.lnb-bar-wrapper a.active {
  background: var(--primary);
  color: #fff;
  pointer-events: none;
}

/* Mobile: fixed to screen bottom */
@media screen and (max-width: 767px) {
  .lnb-bar {
    position: fixed;
    bottom: 0; left: 0;
    z-index: 5000;
    margin-top: 0; margin-bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--gray-light);
    padding: 8px 12px;
    justify-content: flex-start;
    pointer-events: auto;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .lnb-bar-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    justify-content: flex-start;
  }
  .lnb-bar-container::-webkit-scrollbar { display: none; }
  .lnb-bar-wrapper {
    box-shadow: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    gap: 4px;
    justify-content: flex-start;
    min-width: max-content;
  }
  .lnb-bar-wrapper a {
    min-width: 0;
    height: 40px;
    font-size: 14px;
    padding: 0 16px;
  }
  /* Keep active style as filled pill on mobile */
  .lnb-bar-wrapper a.active {
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
  }
  /* Body bottom padding so content isn't hidden under fixed LNB */
  body:has(.lnb-bar) { padding-bottom: 70px; }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media screen and (max-width: 1399px) {
  :root { --header-h: 72px; }
  .container { max-width: calc(100% - 60px); width: 720px; }
  .container-wide { max-width: calc(100% - 60px); width: 720px; }
  .header-container { padding: 0 30px; }
  .header-gnb-item > a { padding: 0 16px; font-size: 14px; }

  .sp-hero { height: 520px; }
  .sp-hero-content .hero-title { font-size: 44px; }
  .sp-hero-content .hero-desc { font-size: 16px; }
  .section-title { font-size: 32px; }
  .sp-content { padding-top: 60px; padding-bottom: 80px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card .num { font-size: 42px; }

  .footer-top .container-wide {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-logo-wrap { grid-column: 1 / -1; }

  .cta-block { padding: 50px 50px; flex-direction: column; align-items: flex-start; }
  .cta-block .cta-title { font-size: 26px; }
}

@media screen and (max-width: 767px) {
  :root { --header-h: 64px; }
  .header-container { padding: 0 20px; }
  .header-gnb { display: none; }
  .header-actions .header-contact-btn,
  .header-actions .lang-switch { display: none; }
  .btn-hamburger { display: flex; }

  .pc-br { display: none; }
  .m-br  { display: block; }

  .sp-hero { height: 420px; }
  .sp-hero-content .hero-title { font-size: 32px; }
  .sp-hero-content .hero-desc { font-size: 15px; }
  .section-title { font-size: 26px; }
  .sp-content { padding-top: 40px; padding-bottom: 60px; border-radius: 20px 20px 0 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .value-grid { grid-template-columns: 1fr; }

  .footer-top .container-wide {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-logo-wrap { grid-column: auto; }
  .footer-nav { flex-direction: column; gap: 30px; }
  .footer-bottom .container-wide { flex-direction: column; align-items: flex-start; gap: 10px; }

  .cta-block { padding: 40px 30px; }
  .cta-block .cta-title { font-size: 22px; }
  .cta-block .cta-desc { font-size: 14px; }
}
