:root {
  --navy:   #2F5597;
  --teal:   #2F5597;
  --light:  #EEF3FB;
  --accent: #00A86B;
  --warn:   #E07B00;
  --text:   #1A1A2E;
  --sub:    #4A5568;
  --muted:  #8B9DB5;
  --border: #D0DEE9;
  --bg:     #F7FAFD;
  --white:  #FFFFFF;
  --radius: 8px;
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', 'Arial', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 15px; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* ---- Navigation ---- */
.site-nav { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-family: var(--font-head); color: var(--white); font-size: 18px; letter-spacing: .04em; }
.nav-links { display: flex; gap: 6px; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 13px; padding: 6px 10px; border-radius: 4px; transition: background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }
.lang-toggle { display: flex; gap: 4px; margin-left: 16px; }
.lang-toggle button { background: none; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.75); padding: 3px 10px; border-radius: 3px; font-size: 12px; cursor: pointer; }
.lang-toggle button.active { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.15); }

.lang-toggle a:hover { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.20);}



/* ---- Page navigation tabs (editor only) ---- */
.editor-tabs { background: #FFF8E1; border-bottom: 2px solid #FFD54F; padding: 10px 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.editor-tabs button { padding: 6px 14px; border-radius: 4px; border: 1px solid #FFD54F; background: var(--white); font-size: 12px; cursor: pointer; }
.editor-tabs button.active { background: #FFD54F; font-weight: 600; }
.editor-note { background: #FFF8E1; border-left: 4px solid #FFD54F; padding: 6px 12px; font-size: 12px; color: #7A6000; }

/* ---- Utility ---- */
.page-section.active { display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-title { font-family: var(--font-head); font-size: 28px; font-weight: normal; color: var(--navy); margin-bottom: 12px; }
.section-dark .section-title { color: var(--white); }
.section-sub { font-size: 15px; color: var(--sub); margin-bottom: 36px; max-width: 100%; }
.section-dark .section-sub { color: rgba(255,255,255,.7); }
.label { font-size: 11px; letter-spacing: .1em; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.label-dark { color: rgba(255,255,255,.6); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.badge-teal { background: var(--light); color: var(--teal); border: 1px solid #B8D8F0; }
.badge-green { background: #E8F8F1; color: var(--accent); border: 1px solid #B2DFC8; }
.badge-warn { background: #FFF3E0; color: var(--warn); border: 1px solid #FFD180; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; }
.btn-primary { background: var(--teal); color: var(--white); border: 2px solid var(--teal);}

.btn_etc { margin-top:32px;text-align:center; }
.btn_etc a:hover, .nav-links a.active { background: var(--light); color: var(--navy); border: 2px solid var(--navy);}


.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-light { background: var(--teal); border: 2px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }

.btn-accent { background: var(--accent); color: var(--white); }
h2 { font-family: var(--font-head); font-weight: normal; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
p { color: var(--sub); line-height: 1.75; margin-bottom: 12px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ---- Photo placeholder (remove when real photo is added) ---- */
.photo-ph { background: var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 12px; text-align: center; padding: 20px; }

/* ---- Hero ---- */
.hero { background: linear-gradient(135deg, #1a3a72 0%, #2F5597 60%, #4472C4 100%); color: var(--white); padding: 80px 0 60px; }
.hero-eyebrow { font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.hero-title { font-family: var(--font-head); font-size: 42px; line-height: 1.25; font-weight: normal; margin-bottom: 20px; }
.hero-title em { font-style: normal; color: #5BBCFF; }
.hero-body { font-size: 16px; color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 32px; line-height: 1.75; }
.hero-btns { gap: 12px; flex-wrap: wrap; }
.hero-btns a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }

.hero-img { width:100%;height:450px;object-fit:cover;border-radius:12px; }
.hero-img-s { width:100%;height:250px;object-fit:cover;border-radius:12px; }

/* ---- Stats bar ---- */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.stats-inner { display: flex; gap: 10px; justify-content: space-around; }
.stat-item { text-align: center; padding: 0px 20px 0px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 26px; color: var(--navy); font-weight: normal; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ---- Pipeline table ---- */
.pipeline-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pipeline-table th { background: var(--navy); color: var(--white); padding: 10px 12px; text-align: center; font-weight: 500; font-size: 12px; }
.pipeline-table th:first-child { text-align: left; width: 25%; }
.pipeline-table td { padding: 10px 10px; border: 1px solid var(--border); }
.pipeline-table tr:nth-child(even) { background: var(--bg); }
.pl-cell-done { background: #E8F8F1; border-radius: 3px; text-align: center; color: var(--accent); font-size: 11px; font-weight: 600; padding: 3px 6px; }
.pl-cell-active { background: var(--light); border-radius: 3px; text-align: center; color: var(--teal); font-size: 11px; font-weight: 600; padding: 3px 6px; border: 1px solid #B8D8F0; }
.pl-cell-plan { background: #FFF8E1; border-radius: 3px; text-align: center; color: var(--warn); font-size: 11px; padding: 3px 6px; border: 1px dashed #FFD180; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item::before { content: ''; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--teal); }
.tl-item.done::before { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.tl-year { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 2px; }
.tl-text { font-size: 14px; color: var(--text); }

/* ---- Team cards ---- */
.team-card { display: flex; gap: 16px; align-items: flex-start; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.team-avatar-ph { width: 72px; height: 72px; border-radius: 50%; background: var(--light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--teal); font-family: var(--font-head); }
.team-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.team-bio { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* ---- Contact form ---- */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-label .req { color: #E53E3E; margin-left: 4px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: var(--font-body); background: var(--white); color: var(--text); transition: border-color .15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,108,168,.15); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { background: var(--light); border-left: 3px solid var(--teal); padding: 10px 14px; font-size: 13px; color: var(--sub); border-radius: 0 6px 6px 0; margin-bottom: 20px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 30px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 25px; }
.footer-brand { font-family: var(--font-head); color: var(--white); font-size: 16px; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-col-title { color: rgba(255,255,255,.85); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.footer-links a { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; margin-bottom: 15px;  line-height: 1;}
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,.4); display: flex; justify-content: space-between; align-items: center; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 3fr 2fr 2fr; gap: 20px;}
  .hero-title { font-size: 28px; }
.hero-img { width:100%;height:200px;object-fit:cover;border-radius:12px; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; width: 50%; }
  .nav-links { display: none; }
}

/* ---- Competitor table ---- */
.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comp-table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 500; font-size: 12px; }
.comp-table td { padding: 10px 14px; border: 1px solid var(--border); }
.comp-table tr.highlight { background: var(--light); }
.comp-table tr.highlight td { font-weight: 600; color: var(--teal); border-color: #B8D8F0; }

/* ---- MoA steps ---- */
.moa-steps { display: flex; flex-direction: column; gap: 16px; }
.moa-step { display: flex; gap: 16px; align-items: flex-start; }
.moa-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.moa-content h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.moa-content p { font-size: 13px; color: var(--sub); margin: 0; }


@media screen and (max-width: 768px) {
  .noSP {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .noPC {
    display: none !important;
  }
}

