/* ============================
   PROTECT GENERAL INSURANCE
   Corporate / Data-driven Design
   ============================ */

:root {
  --primary: #1E3A5F;
  --primary-dark: #152C49;
  --primary-light: #2A4D75;
  --accent: #3B7DD8;
  --accent-light: #5A9AE8;
  --bg: #F4F6F9;
  --bg-alt: #EDF0F5;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6B7C93;
  --text-muted: #9AABB8;
  --border: #D5DCE5;
  --border-light: #E8ECF2;
  --success: #2A9D6E;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow-sm: 0 1px 3px rgba(30,58,95,0.08);
  --shadow: 0 2px 8px rgba(30,58,95,0.1);
  --shadow-lg: 0 8px 32px rgba(30,58,95,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1120px;
}

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

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

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

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

/* ---- Sample Banner ---- */
.sample-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1000;
}

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
}
.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav a:not(.nav-cta):hover { color: var(--accent); }
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,125,216,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; padding: 16px; font-size: 15px; }

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,125,216,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,125,216,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translate(0,0); }
  100% { transform: translate(48px,48px); }
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,125,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,125,216,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 800px; }
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59,125,216,0.2);
  border: 1px solid rgba(59,125,216,0.3);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--accent-light);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 48px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.hero-metric { flex: 1; text-align: center; }
.hero-metric-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.hero-metric-num span {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-light);
  margin-left: 2px;
}
.hero-metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.hero-metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
.hero-actions { display: flex; gap: 12px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================
   SECTIONS
   ============================ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  margin-bottom: 56px;
}
.section-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.section-lead {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.section-header-light .section-lead {
  color: rgba(255,255,255,0.65);
}
.section-header-light h2 { color: var(--white); }

/* ============================
   RISK TABLE (Why Section)
   ============================ */
.risk-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.risk-table {
  min-width: 700px;
}
.risk-table th,
.risk-table td {
  padding: 14px 18px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
}
.risk-table thead th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.risk-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.risk-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.risk-table thead th.highlight-col {
  background: var(--accent);
}
.risk-table td.highlight-col {
  background: rgba(59,125,216,0.06);
  color: var(--accent);
  font-weight: 600;
}
.risk-table tbody tr:last-child td { border-bottom: none; }
.risk-table tbody tr:hover { background: rgba(59,125,216,0.02); }

.why-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.callout-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.callout-body strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--primary);
}
.callout-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   SOLUTIONS
   ============================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.solution-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.solution-icon { margin-bottom: 16px; }
.solution-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.solution-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.solution-tags li {
  padding: 4px 10px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================
   RESULTS (Dark)
   ============================ */
.results-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.result-chart {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.chart-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
}
.bar-chart { display: flex; flex-direction: column; gap: 16px; }
.bar-row {}
.bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.bar-track {
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.bar-fill.animated { width: var(--bar-w); }
.bar-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-light);
  display: inline;
  margin-left: 2px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}
.stat-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Case Study */
.results-case {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 28px 24px;
  align-items: start;
}
.case-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}
.case-badge-accent {
  background: rgba(59,125,216,0.2);
  color: var(--accent-light);
}
.case-amount {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.case-amount strong { color: var(--white); font-size: 18px; }
.case-before ul,
.case-after ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-before li,
.case-after li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.case-before li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.case-after li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--accent);
  align-self: center;
}
.case-saving {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(42,157,110,0.15);
  border: 1px solid rgba(42,157,110,0.3);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #5CE0A0;
}
.case-saving strong { color: #5CE0A0; }

/* ============================
   FLOW
   ============================ */
.flow-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  margin: 0 6px;
  transition: all var(--transition);
}
.flow-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.flow-step-ongoing { border-style: dashed; }
.flow-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.flow-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}
.flow-step-period {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.flow-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.flow-deliverable {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.testimonial-header { margin-bottom: 16px; }
.testimonial-company {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-initial {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonial-card blockquote {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--border);
}
.testimonial-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.result-tag {
  padding: 2px 8px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ============================
   PROFILE
   ============================ */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.profile-visual {
  background: var(--primary);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.profile-initials {
  width: 80px;
  height: 80px;
  background: rgba(59,125,216,0.2);
  border: 2px solid rgba(59,125,216,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.profile-name-en {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.profile-name-ja {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 4px 0;
}
.profile-title {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.profile-body { padding: 32px; }
.career-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.career-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}
.career-year {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.career-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.career-desc strong {
  color: var(--text);
}
.profile-qualifications ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.profile-qualifications li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.profile-qualifications li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}
.profile-message {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.message-quote {
  font-family: 'Inter', serif;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.profile-message p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 12px;
  padding-left: 32px;
}
.profile-message p:last-child { margin-bottom: 0; }

/* ============================
   ASSESSMENT
   ============================ */
.assessment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.assessment-what h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.assessment-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.assessment-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.assessment-checklist svg { flex-shrink: 0; }
.assessment-note {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.assessment-note svg { flex-shrink: 0; margin-top: 2px; }
.assessment-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.assessment-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.assessment-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.required { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,125,216,0.1);
}
.form-group textarea { resize: vertical; }
.form-privacy {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================
   COMPANY TABLE
   ============================ */
.company-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
}
.company-table th,
.company-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.company-table th {
  width: 180px;
  background: var(--bg);
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
}
.company-table td { color: var(--text-light); }
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow-timeline::before { display: none; }
  .results-showcase { grid-template-columns: 1fr; }
  .assessment-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pc-only { display: none; }

  .header-inner { height: 56px; }
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
  }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; border-bottom: none !important; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 24px; }
  .hero-lead { font-size: 14px; }
  .hero-metrics {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .hero-metric-divider { width: 40px; height: 1px; }
  .hero-metric-num { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-scroll-indicator { display: none; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  .solutions-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .result-stats { grid-template-columns: 1fr 1fr; }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .case-arrow {
    transform: rotate(90deg);
    padding: 0;
    justify-self: center;
  }

  .form-row { grid-template-columns: 1fr; }

  .career-item { grid-template-columns: 1fr; gap: 4px; }
  .profile-qualifications ul { grid-template-columns: 1fr; }
  .profile-visual { flex-direction: column; text-align: center; }
  .profile-message p { padding-left: 0; }
  .message-quote { display: none; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 12px 16px; }
}
