/* ============================================
   OneTigris 壹虎野营 国内品牌官网样式
   配色：战术蓝 #092C4C / 军章金 #CD950C / 丛林绿 #108474
   字体：Poppins (英文标题/数据) + 系统无衬线 (中文正文)
   风格：军事/战术美学 — 直角、高对比、深色主导
   ============================================ */

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

:root {
  /* 战术蓝色阶 */
  --ot-blue-950: #061824;
  --ot-blue-900: #092C4C;
  --ot-blue-800: #0C3A5E;
  --ot-blue-700: #11507C;
  --ot-blue-600: #1A6EA0;
  /* 军章金色阶 */
  --ot-gold-500: #CD950C;
  --ot-gold-400: #D9A82E;
  --ot-gold-300: #E4BD54;
  --ot-gold-100: #FAF3E0;
  --ot-gold-50: #FDF9F0;
  /* 丛林绿 */
  --ot-green-600: #108474;
  --ot-green-500: #14A08D;
  --ot-green-100: #E6F7F4;
  /* 中性灰（偏冷）*/
  --ot-gray-50: #F4F6F8;
  --ot-gray-100: #E8ECF0;
  --ot-gray-200: #CDD4DB;
  --ot-gray-300: #A0ACB8;
  --ot-gray-400: #7A8A98;
  --ot-gray-500: #5C6C7C;
  --ot-gray-600: #3D4F5F;
  --ot-gray-700: #2A3A48;
  --ot-gray-800: #1A2832;
  --ot-gray-900: #0E1820;
  --ot-white: #FFFFFF;
  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(6,24,36,0.06);
  --shadow: 0 4px 16px rgba(6,24,36,0.08);
  --shadow-md: 0 8px 32px rgba(6,24,36,0.10);
  --shadow-lg: 0 16px 48px rgba(6,24,36,0.14);
  /* 布局 */
  --radius: 0px;
  --radius-btn: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
  --nav-height: 80px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--ot-gray-800);
  line-height: 1.7;
  background: var(--ot-white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: "Poppins", "Noto Sans SC", -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
}
h1 { font-size: 3rem; line-height: 1.15; letter-spacing: 0.02em; }
h2 { font-size: 2.2rem; line-height: 1.25; }
h3 { font-size: 1.5rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1.25rem; line-height: 1.4; font-weight: 600; }

.section-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ot-gold-500);
  margin-bottom: 12px;
}

.section-title { text-align: center; margin-bottom: 64px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p {
  font-family: "Noto Serif SC", Georgia, serif;
  color: var(--ot-gray-500);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* Light section title (on dark backgrounds) */
.section-title-light h2 { color: var(--ot-white); }
.section-title-light p { color: rgba(255,255,255,0.6); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--ot-gold-500);
  color: var(--ot-white);
  border-color: var(--ot-gold-500);
}
.btn-primary:hover {
  background: var(--ot-gold-400);
  border-color: var(--ot-gold-400);
  box-shadow: 0 4px 20px rgba(205,149,12,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ot-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--ot-white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ot-blue-900);
  border-color: var(--ot-blue-900);
}
.btn-outline-dark:hover {
  background: var(--ot-blue-900);
  color: var(--ot-white);
}
.btn-gold-outline {
  background: transparent;
  color: var(--ot-gold-500);
  border-color: var(--ot-gold-500);
}
.btn-gold-outline:hover {
  background: var(--ot-gold-500);
  color: var(--ot-white);
}
.btn-lg { padding: 16px 48px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ot-gold-500);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .nav-cta { border: none; }
.nav-links .nav-cta::after { display: none; }

/* Transparent state (homepage hero) */
.navbar-transparent {
  background: transparent;
}
.navbar-transparent .nav-logo span { color: var(--ot-white); }
.navbar-transparent .nav-links a { color: rgba(255,255,255,0.85); }
.navbar-transparent .nav-links a:hover { color: var(--ot-white); }
.navbar-transparent .nav-links a.active { color: var(--ot-white); }

/* Scrolled state */
.navbar-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.navbar-scrolled .nav-logo span { color: var(--ot-blue-900); }
.navbar-scrolled .nav-links a { color: var(--ot-gray-700); }
.navbar-scrolled .nav-links a:hover { color: var(--ot-blue-900); }
.navbar-scrolled .nav-links a.active { color: var(--ot-blue-900); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ot-white);
  transition: var(--transition);
}
.navbar-scrolled .nav-toggle span { background: var(--ot-blue-900); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ot-blue-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 0.1s linear;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,24,36,0.92) 0%, rgba(6,24,36,0.75) 55%, rgba(6,24,36,0.35) 100%),
    linear-gradient(to top, rgba(6,24,36,0.6) 0%, transparent 50%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-content { max-width: 700px; }
.hero-logo { height: 48px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.hero-slogan {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--ot-gold-400);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-slogan::before,
.hero-slogan::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ot-gold-400);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--ot-white);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.hero-desc {
  font-family: "Noto Serif SC", Georgia, serif;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 2;
  max-width: 560px;
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.hero-sub {
  margin-bottom: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-sub span {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(205,149,12,0.45);
  background: rgba(205,149,12,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* --- Page Header (inner pages) --- */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ot-blue-950);
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,24,36,0.7) 0%, rgba(6,24,36,0.9) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.page-header h1 { color: var(--ot-white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* --- Sections --- */
.section { padding: 120px 0; }
.section-dark {
  background: var(--ot-blue-900);
  color: var(--ot-white);
}
.section-darker {
  background: var(--ot-blue-950);
  color: var(--ot-white);
}
.section-light { background: var(--ot-gray-50); }
.section-green { background: var(--ot-green-600); color: var(--ot-white); }

/* --- Data Wall --- */
.data-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.data-item {}
.data-number {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--ot-gold-500);
  line-height: 1;
  margin-bottom: 8px;
}
.data-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ot-white);
  margin-bottom: 4px;
}
.data-desc {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

/* --- Product Card (homepage preview) --- */
.product-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 32px;
  scrollbar-width: thin;
}
.product-scroll::-webkit-scrollbar { height: 4px; }
.product-scroll::-webkit-scrollbar-track { background: var(--ot-gray-100); }
.product-scroll::-webkit-scrollbar-thumb { background: var(--ot-gray-300); border-radius: 2px; }

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--ot-blue-950);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--ot-gold-500);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ot-gray-50);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-info { padding: 20px; }
.product-card-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--ot-white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.product-card-desc {
  font-family: "Noto Serif SC", Georgia, serif;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.product-card-price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ot-gold-500);
  font-size: 1.2rem;
}
.product-card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--ot-gold-500);
  font-size: 0.9rem;
  font-weight: 500;
}
.product-card-link:hover { color: var(--ot-gold-400); }

/* --- Global Proof (two-column) --- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-list { list-style: none; }
.proof-list li {
  font-family: "Noto Serif SC", Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.85;
  padding: 16px 0;
  padding-left: 20px;
  border-left: 3px solid var(--ot-gold-500);
  margin-bottom: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
}
.proof-list li strong { color: var(--ot-white); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}
.photo-grid img:hover { transform: scale(1.05); opacity: 0.9; }

/* --- Brand DNA Bar --- */
.dna-bar {
  padding: 48px 0;
}
.dna-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.dna-item {
  text-align: center;
}
.dna-item-en {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--ot-white);
  margin-bottom: 4px;
}
.dna-item-cn {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.dna-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 96px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--ot-white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--ot-blue-950);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ot-white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.4);
}
.footer-brand p {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.footer h4 {
  color: var(--ot-white);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--ot-gold-500); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ot-gold-500), var(--ot-green-600));
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-year { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 16px;
  height: 16px;
  background: var(--ot-gold-500);
  border: 3px solid var(--ot-blue-950);
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-year {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ot-gold-500);
}
.timeline-content h3 {
  color: var(--ot-white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.timeline-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* --- DNA Cards --- */
.dna-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dna-card {
  background: rgba(255,255,255,0.04);
  border-top: 3px solid var(--ot-gold-500);
  padding: 40px 32px;
  transition: var(--transition);
}
.dna-card:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(205,149,12,0.1);
}
.dna-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(205,149,12,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.dna-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--ot-gold-500);
  fill: none;
  stroke-width: 1.5;
}
.dna-card h3 { color: var(--ot-white); margin-bottom: 12px; }
.dna-card p {
  font-family: "Noto Serif SC", Georgia, serif;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

/* --- Two Column (Image + Text) --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.two-col-img {
  overflow: hidden;
  border-radius: var(--radius);
}
.two-col-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition);
}
.two-col-img:hover img { transform: scale(1.03); }
.two-col-text h3 { margin-bottom: 16px; }
.two-col-text p { margin-bottom: 16px; color: rgba(255,255,255,0.7); }

/* Blockquote */
.brand-quote {
  border-left: 3px solid var(--ot-gold-500);
  padding-left: 20px;
  margin-top: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ot-gold-500);
  font-style: italic;
}

/* --- User Persona --- */
.persona-grid {
  display: grid;
  gap: 80px;
}
.persona-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.persona-item:nth-child(even) { direction: rtl; }
.persona-item:nth-child(even) > * { direction: ltr; }
.persona-img {
  overflow: hidden;
  border-radius: var(--radius);
}
.persona-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.persona-tag {
  display: inline-block;
  background: var(--ot-gold-500);
  color: var(--ot-white);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.persona-text h3 { color: var(--ot-blue-900); margin-bottom: 12px; }
.persona-text p { color: var(--ot-gray-500); }

/* --- Product Detail (products.html) --- */
.product-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 99;
  background: var(--ot-blue-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.product-nav::-webkit-scrollbar { display: none; }
.product-nav .container {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.product-nav a {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}
.product-nav a:hover { color: rgba(255,255,255,0.8); }
.product-nav a.active {
  color: var(--ot-gold-500);
  border-bottom-color: var(--ot-gold-500);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Product image gallery */
.product-gallery {}
.product-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ot-gray-50);
  margin-bottom: 12px;
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.product-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.product-thumb {
  flex: 0 0 72px;
  height: 72px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--ot-gray-50);
}
.product-thumb:hover { opacity: 0.8; }
.product-thumb.active {
  opacity: 1;
  border-color: var(--ot-gold-500);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Product info */
.product-info {}
.product-sku {
  display: inline-block;
  border: 1px solid var(--ot-gold-500);
  color: var(--ot-gold-500);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.product-info h2 { margin-bottom: 4px; }
.product-info .product-en {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--ot-gray-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-price {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ot-gold-500);
  margin-bottom: 20px;
}
.product-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ot-gray-400);
  margin-right: 4px;
}
.product-desc {
  color: var(--ot-gray-500);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.product-features { margin-bottom: 32px; }
.product-features li {
  padding: 10px 0 10px 20px;
  border-left: 3px solid var(--ot-gold-500);
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--ot-gray-700);
}
.product-buy-tip {
  font-size: 0.85rem;
  color: var(--ot-gray-400);
  margin-top: 12px;
}

/* --- 7SPI Section (craftsmanship) --- */
.spi-hero { text-align: center; padding: 120px 0; }
.spi-number {
  font-family: "Poppins", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--ot-gold-500);
  line-height: 1;
  margin-bottom: 8px;
}
.spi-unit {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.spi-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
}
.spi-explain {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 48px;
}

/* SPI comparison bars */
.spi-bars { max-width: 500px; margin: 0 auto; }
.spi-bar-item { margin-bottom: 20px; }
.spi-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.spi-bar-label span:first-child { color: rgba(255,255,255,0.7); }
.spi-bar-label span:last-child {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.spi-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.spi-bar-fill {
  height: 100%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.spi-bar-fill.revealed { width: var(--bar-width); }
.spi-bar-item:nth-child(1) .spi-bar-fill { background: var(--ot-gray-500); }
.spi-bar-item:nth-child(2) .spi-bar-fill { background: var(--ot-blue-600); }
.spi-bar-item:nth-child(3) .spi-bar-fill { background: var(--ot-gold-500); }
.spi-bar-item:nth-child(3) .spi-bar-label span:last-child { color: var(--ot-gold-500); }

/* --- Material Cards --- */
.material-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.material-card {
  background: var(--ot-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.material-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.material-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.material-card-body { padding: 28px 24px; }
.material-card-body h3 { margin-bottom: 12px; color: var(--ot-blue-900); }
.material-card-body p { color: var(--ot-gray-500); font-size: 0.95rem; }

/* --- Awards Section --- */
.awards-center { text-align: center; margin-bottom: 48px; }
.award-badge {
  display: inline-block;
  border: 2px solid var(--ot-gold-500);
  padding: 16px 32px;
  margin-bottom: 16px;
}
.award-badge h3 { color: var(--ot-gold-500); font-size: 1.2rem; }
.award-badge p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 4px; }
.events-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.events-list span {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  padding-left: 16px;
  border-left: 2px solid var(--ot-gold-500);
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--ot-gray-200);
  margin-bottom: 8px;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--ot-gold-500); box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ot-gray-800);
}
.faq-question:hover { color: var(--ot-blue-900); }
.faq-arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--ot-gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile CTA (fixed bottom) --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--ot-blue-950);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta .btn { width: 100%; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
  .data-wall { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .dna-cards { grid-template-columns: repeat(2, 1fr); }
  .two-col,
  .persona-item { grid-template-columns: 1fr; gap: 32px; }
  .two-col-reverse { direction: ltr; }
  .persona-item:nth-child(even) { direction: ltr; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .material-cards { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 56px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year { grid-column: 1; text-align: left; }
  .timeline-dot { left: 24px; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 80px 0; }
  .section-title { margin-bottom: 40px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ot-blue-950);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    padding: 100px 32px 32px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85) !important;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span { background: var(--ot-white) !important; }

  /* Hero */
  .hero { min-height: 100vh; }
  .hero .container { padding-top: 140px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-sub { flex-direction: column; gap: 8px; }
  .hero-scroll { display: none; }

  /* Page header */
  .page-header { min-height: 50vh; }

  /* Data wall */
  .data-wall { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .data-number { font-size: 2.8rem; }

  /* Products */
  .product-card { flex: 0 0 240px; }
  .product-detail { grid-template-columns: 1fr; }

  /* DNA */
  .dna-bar .container { flex-direction: column; gap: 20px; }
  .dna-divider { width: 40px; height: 1px; }
  .dna-cards { grid-template-columns: 1fr; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Material cards */
  .material-cards { grid-template-columns: 1fr; }

  /* SPI */
  .spi-number { font-size: 5rem; }

  /* Mobile CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }

  /* Persona */
  .persona-item { grid-template-columns: 1fr; gap: 24px; }
  .persona-item:nth-child(even) { direction: ltr; }
}
