/* =============================================
   BizOps Design System — A-01 Vivid Coral
   Outfit + Noto Sans JP / Coral #FF4828
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Noto+Sans+JP:wght@400;500;700&display=swap');

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

/* ---- DESIGN TOKENS ---- */
:root {
  --coral:       #FF4828;
  --coral-dark:  #E03820;
  --coral-deep:  #C0301A;
  --coral-pale:  #fff5f2;
  --coral-light: #fff8f6;
  --coral-border:#FFD5C8;

  --text-dark:   #1A0600;
  --text:        #5A3428;
  --muted:       #9A6858;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --section-gray:#fff5f2;

  --border:      #FFD5C8;
  --border-light:#FFE8E0;

  --shadow-sm:   0 2px 8px rgba(255,72,40,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:   0 8px 24px rgba(255,72,40,.12), 0 2px 8px rgba(0,0,0,.06);
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Noto Sans JP', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral); }

img { display: block; width: 100%; }

/* ---- LAYOUT ---- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }
.section + .section { border-top: none; }
.section--gray  { background: var(--section-gray); }
.section--white { background: var(--white); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

h1 { font-size: 40px; }
h2 { font-size: 28px; margin-bottom: 16px; }
h3 { font-size: 18px; margin-bottom: 10px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.85;
}

/* ---- PLACEHOLDER BOXES ---- */
.ph-box {
  background: var(--coral-pale);
  border: 2px dashed var(--coral-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral); font-size: 12px; letter-spacing: .05em;
  border-radius: 8px;
}
.ph-box--hero   { width: 100%; height: 420px; border-radius: 12px; }
.ph-box--img    { width: 100%; height: 200px; border-radius: 10px; }
.ph-box--thumb  { width: 100%; height: 160px; border-radius: 10px; }
.ph-box--icon   {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
  background: var(--coral-pale); border-color: var(--coral-border);
  color: var(--coral); font-size: 11px;
}
.ph-box--logo   { width: 80px; height: 40px; border-radius: 6px; }
.ph-box--avatar { width: 120px; height: 120px; border-radius: 50%; }
.ph-box--photo  { width: 100%; height: 320px; border-radius: 10px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none;
  border-radius: 20px;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: inherit; }

.btn--primary {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
}
.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn--outline:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.btn--sm { padding: 9px 20px; font-size: 13px; }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--coral-border);
  height: 64px;
  display: flex; align-items: center;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.site-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--coral-dark);
  text-decoration: none;
  letter-spacing: -.02em;
}
.site-logo:hover { color: var(--coral); }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}
.site-nav a:hover { color: var(--coral); }
.header-cta { margin-left: 8px; }

/* header CTA button overrides */
.site-nav .btn--primary {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  padding: 9px 20px;
  font-size: 13px;
}
.site-nav .btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: #fff;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.9; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.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,.5);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
  font-size: 11px; color: rgba(255,255,255,.3);
  letter-spacing: .05em;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--coral-light);
  border-bottom: 2px solid var(--coral-border);
  padding: 112px 0 52px;
  margin-top: 0;
}
.page-hero .breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--coral); }
.page-hero h1 {
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 800;
}
.page-hero p {
  font-size: 15px;
  color: var(--text);
  margin-top: 12px;
  max-width: 580px;
  line-height: 1.85;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--coral-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--coral);
  padding: 3px 10px;
  color: var(--coral);
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ---- GRID HELPERS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- STEPS ---- */
.steps {
  display: flex; align-items: flex-start; gap: 0;
  counter-reset: step;
}
.step {
  flex: 1; position: relative; text-align: center; padding: 0 12px;
}
.step::after {
  content: '→';
  position: absolute; top: 16px; right: -14px;
  font-size: 20px; color: var(--coral-border);
  font-weight: 700;
}
.step:last-child::after { display: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(255,72,40,.3);
}
.step-label { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.step-sub { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }

/* ---- FAQ ACCORDION ---- */
.faq-item { border-bottom: 1px solid var(--coral-border); }
.faq-q {
  padding: 20px 0;
  font-size: 14px; font-weight: 700; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--coral); }
.faq-q::after {
  content: '+';
  font-size: 22px; font-weight: 400; color: var(--coral);
  flex-shrink: 0; margin-left: 16px;
}
.faq-a { padding: 0 0 20px; font-size: 14px; color: var(--text); line-height: 1.85; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 15px; color: rgba(255,255,255,.75);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta-banner .btn-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-banner .btn--primary {
  background: #fff; color: var(--coral); border-color: #fff;
}
.cta-banner .btn--primary:hover {
  background: var(--coral-pale); color: var(--coral-dark); border-color: var(--coral-pale);
}
.cta-banner .btn--outline {
  border-color: rgba(255,255,255,.6); color: #fff;
}
.cta-banner .btn--outline:hover {
  background: rgba(255,255,255,.12); color: #fff; border-color: #fff;
}

/* ---- TABLE ---- */
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th,
.info-table td {
  padding: 16px 20px; border: 1px solid var(--coral-border);
  text-align: left; vertical-align: top;
}
.info-table th {
  background: var(--coral-pale);
  font-weight: 700;
  width: 220px;
  color: var(--text-dark);
}
.info-table td { background: var(--white); }

/* ---- SCOPE TABLE ---- */
.scope-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.scope-table th,
.scope-table td { padding: 12px 16px; border: 1px solid var(--coral-border); }
.scope-table th { background: var(--coral-pale); font-weight: 700; color: var(--text-dark); }
.scope-table td { background: var(--white); }
.scope-in  { color: var(--text-dark); font-weight: 600; }
.scope-out { color: var(--muted); }

/* ---- FORM ---- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 13px; font-weight: 700;
  margin-bottom: 8px; color: var(--text-dark);
}
.form-required { color: var(--coral); font-size: 11px; margin-left: 6px; font-weight: 700; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--coral-border); border-radius: 8px;
  font-size: 14px; background: var(--white); color: var(--text);
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,72,40,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- TAGS / BADGES ---- */
.tag {
  display: inline-block; font-size: 11px; padding: 3px 10px;
  border: 1px solid var(--coral-border); color: var(--muted);
  border-radius: 20px; margin: 2px;
}

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-num {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--coral-border); font-size: 13px; text-decoration: none;
  color: var(--text); border-radius: 20px; transition: all .2s;
  font-weight: 600;
}
.page-num:hover { border-color: var(--coral); color: var(--coral); }
.page-num.active {
  background: var(--coral); color: #fff; border-color: var(--coral);
}

/* ---- TOP PAGE FV ---- */
.fv {
  margin-top: 64px;
  padding: 96px 0 80px;
  background: linear-gradient(160deg, var(--coral-light) 0%, #fff0ec 100%);
  border-bottom: 2px solid var(--coral-border);
}
.fv-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.fv-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.fv-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.fv h1 {
  font-size: 44px; line-height: 1.2; margin-bottom: 24px;
  font-weight: 800;
  color: var(--text-dark);
}
.fv-lead { font-size: 15px; color: var(--text); margin-bottom: 36px; line-height: 1.85; }
.fv-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  h1 { font-size: 28px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .fv { padding: 72px 0 56px; }
  .fv-inner { grid-template-columns: 1fr; gap: 40px; }
  .fv h1 { font-size: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps { flex-direction: column; gap: 20px; align-items: center; }
  .step { width: 100%; max-width: 280px; }
  .step::after { content: '↓'; top: auto; bottom: -20px; right: 50%; transform: translateX(50%); }
  .site-nav .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .info-table th { width: 120px; }
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: 26px; }
  .cta-banner { padding: 56px 24px; }
  .cta-banner h2 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-header { height: 56px; }
  .fv { margin-top: 56px; }
}

/* ---- UTILITY ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; gap: 14px; }
.divider { border: none; border-top: 1px solid var(--coral-border); margin: 32px 0; }

/* ---- ADDITIONAL COMPONENTS ---- */

/* Contact side panel */
.contact-side {
  background: var(--coral-pale);
  border: 1px solid var(--coral-border);
  border-radius: 12px;
  padding: 32px;
}
.contact-side h3 {
  font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px;
}
.contact-side p { font-size: 13px; line-height: 1.85; color: var(--text); }
.contact-side .contact-info-label {
  font-size: 10px; font-weight: 700;
  color: var(--coral); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 4px;
}

/* Job card */
.job-card {
  background: var(--white);
  border: 1px solid var(--coral-border);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--coral-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 20px; }
.blog-card-date {
  font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-bottom: 8px;
}
.blog-card-title {
  font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.5;
}

/* Category tabs */
.tab-list { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 8px 20px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--coral-border);
  background: var(--white); color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.tab-btn:hover { border-color: var(--coral); color: var(--coral); }
.tab-btn.active {
  background: var(--coral); color: #fff; border-color: var(--coral);
}

/* Plan card (pricing) */
.plan-card {
  border: 1.5px solid var(--coral-border);
  border-radius: 12px; overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card-head {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  padding: 28px 32px;
}
.plan-card-head h3 {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.plan-card-head .plan-sub { font-size: 12px; color: rgba(255,255,255,.65); }
.plan-card-body { padding: 28px 32px; }
.plan-price {
  font-size: 36px; font-weight: 800; color: var(--text-dark); line-height: 1;
  margin-bottom: 8px;
}
.plan-price span { font-size: 14px; color: var(--muted); font-weight: 400; }

/* Two-col layout (contact) */
.contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Checkbox/radio */
.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); cursor: pointer;
}
.check-item input { accent-color: var(--coral); }

/* Privacy/prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: 18px; font-weight: 800; margin-top: 40px; margin-bottom: 12px; color: var(--text-dark);
}
.prose p, .prose li { font-size: 14px; color: var(--text); line-height: 1.9; margin-bottom: 12px; }
.prose ul { padding-left: 20px; }

/* Value cards */
.value-card {
  text-align: center; padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--coral-border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* Scope marks */
.check { color: var(--coral); font-weight: 700; }
.cross { color: var(--muted); }

/* Tool logo grid */
.tool-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
