/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: linear-gradient(135deg, #2563eb, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 15px; transition: all 0.3s ease; cursor: pointer; border: none;
  text-align: center; line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white {
  background: #fff; color: #1d4ed8;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.header-nav { display: flex; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: #444;
  transition: color 0.2s; position: relative;
}
.nav-link:hover { color: #2563eb; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #2563eb; transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.header-cta-btn {
  padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff;
  transition: all 0.3s;
}
.header-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #333; transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e3a5f 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(220,38,38,0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; color: #fff; }
.hero-label {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.3);
  font-size: 14px; font-weight: 500; color: #93c5fd; margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  line-height: 1.3; margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa, #f87171);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: #cbd5e1;
  line-height: 1.9; margin-bottom: 40px;
}
.hero-subtitle strong { color: #fff; }
.hero-stats {
  display: flex; gap: 48px; margin-bottom: 48px;
  padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 48px; font-weight: 900; color: #fff;
  display: block; line-height: 1;
}
.stat-unit { font-size: 20px; font-weight: 700; color: #93c5fd; }
.stat-label { font-size: 13px; color: #94a3b8; margin-top: 8px; display: block; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 1px; height: 40px;
  background: rgba(255,255,255,0.6);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -40px; } 100% { top: 40px; } }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-light { background: #f8fafc; }
.section-dark { background: #0f172a; color: #fff; }
.section-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: #2563eb; text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-dark .section-label { color: #60a5fa; }
.section-title {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  line-height: 1.4; margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: #64748b; max-width: 700px; margin: 0 auto;
}
.section-dark .section-desc { color: #94a3b8; }

/* ========== MARKET ========== */
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.market-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all 0.3s;
  border: 1px solid #e2e8f0;
}
.market-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.market-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #2563eb;
}
.market-icon svg { width: 24px; height: 24px; }
.market-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.market-card p { font-size: 14px; color: #64748b; line-height: 1.7; }
.market-card strong { color: #1e40af; }

.market-highlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: #fff; border-radius: 20px; padding: 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid #e2e8f0;
}
.highlight-number {
  font-size: 72px; font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #dc2626);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 16px;
}
.highlight-number span {
  font-size: 32px; -webkit-text-fill-color: #64748b;
}
.highlight-content p { font-size: 15px; color: #475569; }
.highlight-content strong { color: #1e40af; }
.highlight-image { border-radius: 12px; overflow: hidden; }
.highlight-image img { width: 100%; }

/* ========== PROBLEMS ========== */
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.problem-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px; transition: all 0.3s;
}
.problem-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(37,99,235,0.3); }
.problem-number {
  font-size: 48px; font-weight: 900;
  background: linear-gradient(135deg, #60a5fa, #f87171);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 16px;
}
.problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: #94a3b8; line-height: 1.7; }
.problems-image {
  max-width: 800px; margin: 0 auto; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ========== SOLUTION ========== */
.solution-visual {
  max-width: 900px; margin: 0 auto 64px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.before-after {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start;
}
.ba-column {
  border-radius: 16px; padding: 36px;
}
.ba-before { background: #fef2f2; border: 1px solid #fecaca; }
.ba-after { background: #eff6ff; border: 1px solid #bfdbfe; }
.ba-title {
  font-size: 24px; font-weight: 800; margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 12px;
}
.ba-before .ba-title { color: #991b1b; }
.ba-after .ba-title { color: #1e40af; }
.ba-title span { font-size: 14px; font-weight: 500; color: #64748b; }
.ba-list li { margin-bottom: 20px; }
.ba-list strong { display: block; font-size: 15px; margin-bottom: 4px; }
.ba-list p { font-size: 14px; color: #64748b; }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; margin-top: 60px; flex-shrink: 0;
}
.ba-arrow svg { width: 24px; height: 24px; }

/* ========== FEATURES ========== */
.features-list { max-width: 900px; margin: 0 auto; }
.feature-item {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 36px 0; border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s;
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-size: 40px; font-weight: 900; color: #2563eb;
  line-height: 1; flex-shrink: 0; opacity: 0.3;
  transition: opacity 0.3s;
}
.feature-item:hover .feature-num { opacity: 1; }
.feature-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-body p { font-size: 14px; color: #64748b; line-height: 1.8; }

/* ========== SERVICES ========== */
.service-block {
  background: #f8fafc; border-radius: 20px; padding: 48px;
  margin-bottom: 32px; border: 1px solid #e2e8f0;
}
.service-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: #2563eb; color: #fff; font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.badge-accent { background: #dc2626; }
.service-name {
  font-size: 24px; font-weight: 800; margin-bottom: 16px;
}
.service-desc {
  font-size: 15px; color: #475569; max-width: 800px; margin-bottom: 32px;
}
.service-coverage { margin-bottom: 32px; }
.service-coverage h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.coverage-tags span {
  padding: 6px 16px; border-radius: 100px; font-size: 13px;
  background: #fff; border: 1px solid #e2e8f0; color: #475569;
}
.classification-image {
  max-width: 700px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.report-parts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.report-part {
  background: #fff; border-radius: 12px; padding: 24px;
  border: 1px solid #e2e8f0; text-align: center;
}
.part-num {
  font-size: 12px; font-weight: 700; color: #dc2626;
  text-transform: uppercase; margin-bottom: 8px;
}
.report-part h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.report-part p { font-size: 12px; color: #64748b; line-height: 1.6; }

/* Pricing - Redesigned */
.pricing-section { margin-top: 48px; }
.pricing-heading {
  font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 32px;
}
.pricing-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px;
}
.pricing-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.pricing-card-header { padding: 28px 28px 16px; }
.pricing-card-blue .pricing-card-header {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
}
.pricing-card-red .pricing-card-header {
  background: linear-gradient(135deg, #991b1b, #dc2626);
  color: #fff;
}
.pricing-card-badge {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.2); font-size: 12px; font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card-header h4 { font-size: 18px; font-weight: 700; }
.pricing-card-body {
  padding: 24px 28px; background: #fff;
}
.pricing-card-body p { font-size: 14px; color: #475569; line-height: 1.7; }
.pricing-card-footer {
  padding: 16px 28px 24px; background: #fff;
  border-top: 1px solid #f1f5f9;
}
.pricing-card-price {
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #dc2626);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-package {
  background: linear-gradient(135deg, #f0f9ff, #eff6ff);
  border: 2px solid #bfdbfe; border-radius: 16px;
  padding: 24px 32px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.pricing-package p { font-size: 15px; color: #1e40af; margin: 0; }
.pricing-package strong { color: #1e40af; }

/* ========== SAMPLES ========== */
.samples-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 48px; }
.sample-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #e2e8f0; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sample-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sample-card > p { font-size: 14px; color: #64748b; margin-bottom: 20px; }
.sample-image {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); border: 1px solid #e2e8f0;
}
.sample-covers {
  text-align: center; margin-bottom: 64px;
}
.sample-covers h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.sample-covers > p { font-size: 14px; color: #64748b; margin-bottom: 24px; }
.sample-covers .sample-image {
  max-width: 900px; margin: 0 auto;
}

/* Recommendation */
.recommendation-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border-radius: 20px; padding: 64px; color: #fff;
}
.recommendation-content .section-label { color: #60a5fa; }
.recommendation-content h3 {
  font-size: 28px; font-weight: 800; margin: 12px 0 20px; line-height: 1.4;
}
.recommendation-content p { font-size: 15px; color: #cbd5e1; margin-bottom: 32px; line-height: 1.8; }
.recommendation-content strong { color: #fff; }
.recommendation-image { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

/* ========== VOICES ========== */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px; transition: all 0.3s;
}
.voice-card:hover { background: rgba(255,255,255,0.08); }
.voice-quote {
  font-size: 48px; font-weight: 900; color: #2563eb; line-height: 1;
  margin-bottom: 12px;
}
.voice-text { font-size: 14px; color: #cbd5e1; line-height: 1.8; margin-bottom: 24px; }
.voice-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.voice-company { display: block; font-weight: 700; font-size: 14px; }
.voice-role { display: block; font-size: 13px; color: #94a3b8; }

/* ========== CTA ========== */
.section-cta {
  background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
  color: #fff; text-align: center; padding: 100px 0;
}
.cta-title {
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 800;
  line-height: 1.4; margin-bottom: 20px;
}
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 48px; }
.cta-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-bottom: 48px;
}
.cta-step {
  background: rgba(255,255,255,0.1); border-radius: 16px; padding: 24px 32px;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: #2563eb; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.cta-step p { font-size: 14px; font-weight: 500; }
.cta-step-arrow { color: rgba(255,255,255,0.4); }
.cta-step-arrow svg { width: 24px; height: 24px; }
.cta-actions { margin-bottom: 16px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.cta-qr { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-qr img { width: 120px; height: 120px; border-radius: 12px; }
.cta-qr p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ========== COMPANY ========== */
.company-grid { display: flex; flex-direction: column; gap: 48px; }
.ceo-profile {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  background: #f8fafc; border-radius: 20px; padding: 48px;
  border: 1px solid #e2e8f0;
}
.ceo-image {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ceo-label { font-size: 13px; color: #2563eb; font-weight: 600; margin-bottom: 4px; }
.ceo-name { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.ceo-name span { font-size: 14px; font-weight: 400; color: #94a3b8; margin-left: 12px; }
.ceo-title { font-size: 13px; color: #64748b; margin-bottom: 16px; }
.ceo-bio { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 20px; }
.ceo-quote {
  font-size: 15px; color: #1e40af; font-weight: 500;
  border-left: 3px solid #2563eb; padding-left: 16px;
  font-style: italic; line-height: 1.8;
}

.company-table-wrapper {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #e2e8f0;
}
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td {
  padding: 16px 24px; text-align: left; font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.company-table th {
  width: 160px; background: #f8fafc; font-weight: 600; color: #475569;
}
.company-table td { color: #1a1a2e; }
.company-table a { color: #2563eb; }
.company-table a:hover { text-decoration: underline; }

/* ========== CONTACT ========== */
.contact-block {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.contact-block h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.contact-block > p { font-size: 15px; color: #64748b; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 500;
}
.contact-item svg { width: 20px; height: 20px; color: #2563eb; flex-shrink: 0; }
.contact-item a { color: #2563eb; }
.contact-item a:hover { text-decoration: underline; }

/* ========== FOOTER ========== */
.footer {
  background: #0f172a; color: #94a3b8; padding: 48px 0 32px;
}
.footer-inner { text-align: center; }
.footer-logo { height: 48px; margin: 0 auto 12px; border-radius: 8px; }
.footer-brand p { font-size: 13px; margin-bottom: 24px; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 24px; margin-bottom: 32px;
}
.footer-links a { font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer-bottom p { font-size: 12px; }

/* ========== SERVICE LINEUP ========== */
.service-lineup {
  margin-top: 32px; text-align: center;
}
.service-lineup h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #1e40af;
}
.lineup-image {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid #e2e8f0;
}

/* ========== VISION VISUAL ========== */
.vision-visual {
  max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08); border: 1px solid #e2e8f0;
}

/* ========== RECOMMENDATION HIGHLIGHT ========== */
.recommendation-highlight {
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  border-radius: 16px; padding: 24px; margin-bottom: 20px; text-align: center;
}
.rec-highlight-label {
  font-size: 14px; font-weight: 600; color: #93c5fd;
  display: block; margin-bottom: 8px;
}
.rec-highlight-numbers { margin-bottom: 4px; }
.rec-big-num {
  font-size: 56px; font-weight: 900; color: #fff; line-height: 1;
}
.rec-big-num small { font-size: 24px; }
.rec-sub-num { font-size: 18px; color: #93c5fd; font-weight: 600; }
.rec-highlight-text { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }

/* ========== SAMPLES SINGLE ========== */
.samples-grid-single { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto 48px; }

/* ========== REPORT SAMPLE IMAGE ========== */
.report-sample-image {
  margin-top: 32px; text-align: center;
}
.report-sample-image h4 {
  font-size: 15px; font-weight: 600; color: #475569; margin-bottom: 16px;
}
.report-sample-image img {
  max-width: 700px; margin: 0 auto; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid #e2e8f0;
}

/* ========== CTA LOGIN PREVIEW ========== */
.cta-login-preview {
  margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3); border: 2px solid rgba(255,255,255,0.15);
}

/* ========== COMPANY MISSION ========== */
.company-mission {
  font-size: 15px; color: #1e40af; font-weight: 500;
  background: #eff6ff; border-radius: 12px; padding: 20px;
  margin-top: 16px; line-height: 1.8;
  border: 1px solid #bfdbfe;
}

/* ========== STAT LABEL SMALL ========== */
.stat-label small {
  display: block; font-size: 11px; color: #64748b; margin-top: 2px;
}

/* ========== ANIMATIONS ========== */
[data-aos] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* Stagger animations */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* Pulse animation for CTA button */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
  50% { box-shadow: 0 4px 24px rgba(37,99,235,0.6); }
}
.hero-actions .btn-primary { animation: pulse 3s ease-in-out infinite; }

/* Fade in scale animation for images */
[data-aos="fade-scale"] {
  opacity: 0; transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos="fade-scale"].visible { opacity: 1; transform: scale(1); }

/* Slide in from left */
[data-aos="slide-left"] {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="slide-left"].visible { opacity: 1; transform: translateX(0); }

/* Slide in from right */
[data-aos="slide-right"] {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="slide-right"].visible { opacity: 1; transform: translateX(0); }

/* Floating animation for stat numbers */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.stat-item { animation: float 4s ease-in-out infinite; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 1s; }

/* Market card hover lift */
.market-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* Feature number glow on hover */
.feature-item:hover .feature-num {
  text-shadow: 0 0 20px rgba(37,99,235,0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .market-grid { grid-template-columns: 1fr; }
  .market-highlight { grid-template-columns: 1fr; }
  .highlight-image { order: -1; }
  .problems-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
  .report-parts { grid-template-columns: repeat(3, 1fr); }
  .voices-grid { grid-template-columns: 1fr; }
  .ceo-profile { grid-template-columns: 1fr; }
  .ceo-image { max-width: 240px; }
  .recommendation-block { grid-template-columns: 1fr; }
  .recommendation-image { order: -1; }
  .samples-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta-btn { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav */
  .header-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 24px; gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid #e2e8f0;
  }
  .header-nav.open .nav-link { font-size: 16px; padding: 8px 0; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll-indicator { display: none; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .service-block { padding: 24px; }
  .report-parts { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }

  .cta-steps { flex-direction: column; }
  .cta-step-arrow { transform: rotate(90deg); }

  .ceo-profile { padding: 24px; }
  .company-table th { width: 100px; }

  .recommendation-block { padding: 32px; }
  .recommendation-content h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- CONTACT FORM ---------- */
.contact-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}
.required { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: #1e293b;
  background: #fff;
  transition: .3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,.15);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }
.form-privacy { margin-bottom: 28px; }
.checkbox-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: .9rem; color: #64748b;
}
.checkbox-label input { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  transition: .3s ease;
  flex-shrink: 0;
  position: relative;
}
.checkbox-label input:checked + .checkbox-custom {
  background: #3b82f6;
  border-color: #3b82f6;
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute; top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.form-success {
  display: none;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 0;
}
.form-success.show { display: block; }
.success-icon { margin-bottom: 20px; }
.success-icon svg { color: #22c55e; margin: 0 auto; }
.form-success h3 {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 12px;
}
.form-success p { color: #64748b; }
