@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+SC:wght@300;400&family=Noto+Sans+TC:wght@300;400&display=swap');

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

:root {
  --navy: #0a1628;
  --navy-light: #1a2a40;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text: #0a1628;
  --text-muted: #555555;
  --border: #e0d9cc;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans SC', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
.jpcar-nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-lang {
  display: flex;
  gap: 8px;
}
.nav-lang a {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  padding: 4px 8px;
  border: 0.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--gold); border-color: var(--gold); }
.nav-cta {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* HERO */
.jpcar-hero {
  background: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 100px 10%;
}
.hero-decor {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  opacity: 0.12;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-badge-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-badge-text {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* STATS */
.jpcar-stats {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(10,22,40,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(10,22,40,0.6);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* SECTION COMMON */
.jpcar-section { padding: 80px 48px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.3;
}
.section-title-white { color: var(--white); }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--off-white); }
.service-card-dark {
  background: var(--navy);
}
.service-card-dark:hover { background: var(--navy-light); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 22px;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-name-white { color: var(--white); }
.service-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.9;
  font-weight: 400;
}
.service-desc-muted { color: rgba(255,255,255,0.7); }
.service-price {
  margin-top: 20px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}
.service-arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta {
  margin-top: 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
}

/* WHY */
.jpcar-why { background: var(--navy); padding: 80px 48px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 40px;
  margin-top: 52px;
}
.why-item { text-align: center; position: relative; }
.why-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 400;
}

/* TESTIMONIALS */
.jpcar-testimonials { background: var(--off-white); padding: 80px 48px; text-align: center; }
.testimonial-wrap { max-width: 680px; margin: 0 auto; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.dot.active { background: var(--gold); }

/* CTA */
.jpcar-cta { background: var(--navy); padding: 80px 48px; text-align: center; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 400;
}
.cta-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 16px;
}
.cta-input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 15px 20px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.cta-input::placeholder { color: rgba(255,255,255,0.55); }
.cta-input:focus { border-color: var(--gold); }
.cta-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px 30px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
  font-family: inherit;
  transition: background 0.2s;
}
.cta-submit:hover { background: var(--gold-light); }
.cta-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* FOOTER */
.jpcar-footer {
  background: #060e1a;
  padding: 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 400;
}
.footer-col-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.footer-lang { display: flex; gap: 12px; }
.footer-lang a {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-lang a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .jpcar-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .jpcar-hero { padding: 72px 24px; }
  .hero-title { font-size: 40px; }
  .jpcar-stats { grid-template-columns: repeat(2, 1fr); }
  .jpcar-section { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .jpcar-why { padding: 56px 24px; }
  .jpcar-cta { padding: 56px 24px; }
  .jpcar-footer { padding: 40px 24px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 32px; }
  .jpcar-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr !important; }
}
/* FAB */
.fab-wrap{position:fixed;bottom:28px;right:28px;display:flex;flex-direction:column;align-items:flex-end;gap:12px;z-index:9999;}
.fab-item{display:flex;align-items:center;gap:10px;cursor:pointer;}
.fab-label{background:#fff;border:1px solid rgba(0,0,0,0.12);border-radius:8px;padding:6px 12px;font-size:13px;color:#333;white-space:nowrap;box-shadow:0 2px 8px rgba(0,0,0,0.08);opacity:0;transform:translateX(8px);transition:opacity 0.2s,transform 0.2s;pointer-events:none;}
.fab-item:hover .fab-label{opacity:1;transform:translateX(0);}
.fab-btn{width:52px;height:52px;border-radius:50%;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,0.2);transition:transform 0.15s;flex-shrink:0;}
.fab-btn:hover{transform:scale(1.08);}
.fab-btn:active{transform:scale(0.96);}
.fab-btn svg{width:26px;height:26px;}
.fab-wa{background:#25D366;}
.fab-line{background:#06C755;}
.fab-wechat{background:#07C160;}

/* 手机导航 */
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;}
.nav-hamburger span{display:block;width:24px;height:1.5px;background:#fff;transition:all 0.3s;}
.nav-mobile{display:none;position:fixed;inset:0;background:var(--navy);z-index:9998;flex-direction:column;align-items:center;justify-content:center;gap:32px;}
.nav-mobile.open{display:flex;}
.nav-mobile a{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:300;color:rgba(255,255,255,0.8);letter-spacing:2px;}
.nav-mobile a:hover{color:var(--gold);}
.nav-mobile-lang{display:flex;gap:16px;margin-top:16px;}
.nav-mobile-lang a{font-size:13px;color:rgba(255,255,255,0.65);letter-spacing:1px;}
.nav-mobile-close{position:absolute;top:24px;right:24px;background:none;border:none;color:#fff;font-size:28px;cursor:pointer;}

@media(max-width:900px){
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
}
@media(min-width:901px){
  .nav-hamburger{display:none !important;}
  .nav-mobile{display:none !important;}
}

/* 文章页 */
.jpcar-article { max-width: 100%; }
.article-hero { background: var(--navy); padding: 80px 48px 60px; }
.article-hero-content { max-width: 800px; margin: 0 auto; }
.article-meta { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 1px; margin-bottom: 16px; }
.article-meta a { color: var(--gold); }
.meta-sep { margin: 0 8px; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--white); line-height: 1.3; }
.article-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 48px; display: grid; grid-template-columns: 1fr 300px; gap: 60px; }
.article-body { font-size: 15px; line-height: 1.9; color: #333; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--navy); margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.article-body h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body img { width: 100%; border-radius: 4px; margin: 24px 0; }
.article-body a { color: var(--gold); }
.sidebar-card { background: var(--off-white); padding: 28px; border-left: 2px solid var(--gold); }
.sidebar-eyebrow { font-size: 10px; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.sidebar-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.sidebar-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.sidebar-btn { display: block; background: var(--navy); color: var(--white); text-align: center; padding: 12px; font-size: 12px; letter-spacing: 1.5px; text-decoration: none; }
.sidebar-btn:hover { background: var(--gold); color: var(--navy); }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 0.5px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 10px 0; font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.sidebar-links a:hover { color: var(--gold); }
.article-cta { background: var(--navy); padding: 72px 48px; text-align: center; }

/* 博客列表页 */
.jpcar-archive { }
.archive-hero { background: var(--navy); padding: 80px 48px; text-align: center; }
.archive-wrap { max-width: 900px; margin: 0 auto; padding: 60px 48px; }
.archive-card { display: grid; grid-template-columns: 280px 1fr; gap: 32px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 0.5px solid var(--border); }
.archive-card.no-thumb { grid-template-columns: 1fr !important; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1100px; margin:0 auto; padding:0 48px; }
@media (max-width:900px) { .blog-grid { grid-template-columns:1fr; padding:0 24px; } }
.archive-card:last-child { border-bottom: none; }
.archive-thumb img { width: 100%; height: 180px; object-fit: cover; }
.archive-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin: 10px 0 12px; }
.archive-title a { color: var(--navy); transition: color 0.2s; }
.archive-title a:hover { color: var(--gold); }
.archive-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.archive-more { font-size: 12px; color: var(--gold); letter-spacing: 1px; }

@media(max-width:900px) {
  .article-wrap { grid-template-columns: 1fr; padding: 40px 24px; }
  .article-hero { padding: 40px 20px 32px; }
  .article-sidebar { display: none; }
  .article-title { font-size: 28px; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-wrap { padding: 40px 24px; }
}

/* 文章页对齐修复 */
.article-hero-content { max-width: 1100px; margin: 0 auto; padding: 0 48px; box-sizing: border-box; }
.article-wrap { box-sizing: border-box; width: 100%; }

/* 服务落地页 */
.sv-hero { background: var(--navy); padding: 120px 48px 80px 10%; position: relative; overflow: hidden; }
.sv-hero::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: linear-gradient(135deg, #1a4a7a 0%, #185fa5 100%); opacity: 0.3; }
.sv-hero-content { max-width: 700px; position: relative; z-index: 2; }
.sv-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--white); line-height: 1.2; margin: 16px 0 20px; }
.sv-hero-sub { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 400; line-height: 1.9; }
.sv-section { padding: 80px 48px; }
.sv-container { max-width: 1100px; margin: 0 auto; }
.sv-highlights { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px; margin-top: 48px; }
.sv-highlight-item { padding: 32px; border: 0.5px solid var(--border); background: var(--white); }
.sv-highlight-icon { margin-bottom: 16px; }
.sv-highlight-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.sv-highlight-desc { font-size: 14px; color: #555555; line-height: 1.9; font-weight: 400; }
.sv-plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px; background: var(--border); margin-top: 48px; }
.sv-plan-card { background: var(--white); padding: 36px 32px; position: relative; }
.sv-plan-featured { background: var(--navy); }
.sv-plan-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; letter-spacing: 1.5px; padding: 4px 12px; margin-bottom: 16px; font-weight: 500; }
.sv-plan-days { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; }
.sv-plan-title { font-size: 16px; font-weight: 500; color: var(--navy); margin: 8px 0 4px; }
.sv-plan-featured .sv-plan-title { color: var(--white); }
.sv-plan-price { font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 20px; }
.sv-plan-list { list-style: none; padding: 0; border-top: 0.5px solid var(--border); padding-top: 16px; }
.sv-plan-featured .sv-plan-list { border-top-color: rgba(255,255,255,0.15); }
.sv-plan-list li { font-size: 13px; color: var(--text-muted); padding: 8px 0; border-bottom: 0.5px solid var(--border); line-height: 1.6; padding-left: 16px; position: relative; }
.sv-plan-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.sv-plan-featured .sv-plan-list li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.15); }
.sv-plan-list li:last-child { border-bottom: none; }
.sv-faq { max-width: 800px; margin: 48px auto 0; }
.sv-faq-item { border-bottom: 0.5px solid var(--border); padding: 24px 0; }
.sv-faq-item:first-child { border-top: 0.5px solid var(--border); }
.sv-faq-q { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.sv-faq-a { font-size: 14px; color: #555555; line-height: 1.9; font-weight: 400; }

@media(max-width:900px) {
  .sv-hero { padding: 80px 24px 60px; }
  .sv-hero-title { font-size: 36px; }
  .sv-section { padding: 56px 24px; }
  .sv-highlights { grid-template-columns: 1fr; }
  .sv-plans { grid-template-columns: 1fr; }
}
