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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #0066ff;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a1a1a;
}

.btn-nav {
  background: #0066ff;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.hero {
  padding: 80px 0 120px;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: #f0f7ff;
  color: #0066ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  background: #0066ff;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.btn-primary:hover {
  background: #0052cc;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0066ff;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #0066ff;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f0f7ff;
}

.trust-line {
  font-size: 14px;
  color: #999;
  margin-top: 4px;
}

.hero-visual {
  margin-top: 60px;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.problem {
  padding: 80px 0;
  background: #fafafa;
}

.problem h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  color: #666;
  font-size: 15px;
}

.audit-scope {
  padding: 80px 0;
}

.scope-header {
  text-align: center;
  margin-bottom: 64px;
}

.scope-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.scope-header p {
  font-size: 18px;
  color: #666;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.scope-item {
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.2s;
}

.scope-item:hover {
  border-color: #0066ff;
  box-shadow: 0 4px 16px rgba(0,102,255,0.1);
}

.scope-number {
  font-size: 14px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 12px;
}

.scope-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.scope-item p {
  color: #666;
  font-size: 15px;
}

.deliverable {
  padding: 80px 0;
  background: #fafafa;
}

.deliverable-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.deliverable-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.deliverable-list {
  list-style: none;
  margin-bottom: 32px;
}

.deliverable-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #1a1a1a;
  font-size: 16px;
}

.deliverable-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 2px;
  background: #0066ff;
}

.deliverable-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.social-proof {
  padding: 80px 0;
}

.social-proof h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial {
  background: #fafafa;
  padding: 40px;
  border-radius: 12px;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.cta {
  padding: 80px 0;
  background: #0066ff;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-box > p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input {
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.form-note {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.page-hero {
  padding: 60px 0 40px;
  background: #fafafa;
}

.breadcrumb {
  display: inline-block;
  color: #666;
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumb:hover {
  color: #0066ff;
}

.page-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 16px;
  max-width: 700px;
}

.process {
  padding: 80px 0;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.process-step.reverse {
  direction: rtl;
}

.process-step.reverse > * {
  direction: ltr;
}

.process-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 12px;
}

.process-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-text p {
  color: #666;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #1a1a1a;
  font-size: 15px;
}

.checklist li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 2px;
  background: #0066ff;
}

.timeline {
  padding: 80px 0;
  background: #fafafa;
}

.timeline h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e5e5e5;
  position: relative;
}

.timeline-card.featured {
  border-color: #0066ff;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0066ff;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.timeline-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 24px;
}

.timeline-features {
  list-style: none;
}

.timeline-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.timeline-features li:last-child {
  border-bottom: none;
}

.faq {
  padding: 80px 0;
}

.faq h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  .problem-grid,
  .scope-grid,
  .testimonial-grid,
  .deliverable-content,
  .process-step,
  .timeline-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .process-step.reverse { direction: ltr; }
  .nav-links { gap: 16px; font-size: 14px; }
}