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

:root {
  --primary: #014777;
  --primary-light: #004875;
  --accent: #fd6c53;
  --accent-dark: #f85a3b;
  --text: #1c2b36;
  --text-muted: #5c6b76;
  --bg-light: #f4f7fa;
  --border: #e8ecf0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  margin-left: 40px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  transition: color .2s;
}

.nav a:hover {
  color: var(--accent);
}

.btn-cta {
  background: var(--accent);
  color: white;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 108, 83, .3);
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 108, 83, .3);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(1,71,119,0.05) 0%, rgba(253,108,83,0.05) 100%);
  padding: 80px 0;
  position: relative;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-text h1 strong {
  color: var(--accent);
}

.hero-kicker {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.hero-text > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-text > a {
  align-self: flex-start;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 24px;
}

.feature-box p {
  font-size: 15px;
  margin: 0;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-light {
  background: var(--bg-light);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Flow Steps */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 50px 0 60px;
}

.flow-step {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.flow-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.flow-step h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.flow-step small {
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit {
  font-size: 16px;
  color: var(--text);
  padding: 12px 0;
}

/* Warning */
.section-warning {
  background: #fff9f5;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.section-warning h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-warning p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Cases */
.cases {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.case-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.case-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.case-header h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 0;
}

.case-type {
  font-size: 14px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.case-manager {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.case-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.case-person {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric-item {
  background: var(--bg-light);
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.case-chart {
  grid-column: 1/-1;
  width: 100%;
  border-radius: 10px;
  margin-top: 16px;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.problem-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
}

.problem-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Solution Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 50px;
}

.solution-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.solution-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.service-box {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.service-box h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-box p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Investment */
.investment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.investment-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefit-item {
  font-size: 16px;
  color: var(--text);
  padding: 8px 0;
}

.investment-table {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.investment-table h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr {
  border-bottom: 1px solid var(--border);
}

table td {
  padding: 14px 0;
  font-size: 16px;
}

table tr.highlight {
  background: var(--bg-light);
}

table tr.highlight td {
  padding: 14px;
  border-radius: 6px;
}

/* Warning Box */
.warning-box {
  background: #fff9f5;
  border-left: 4px solid var(--accent);
  padding: 28px;
  border-radius: 10px;
  margin: 40px 0;
}

.warning-box h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.warning-box p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Partner */
.partner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.partner-photo {
  width: 100%;
  border-radius: 12px;
}

.partner-info h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.partner-info > p {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.credentials {
  list-style: none;
  margin-bottom: 20px;
}

.credentials li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badges-container img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* References */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.reference-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: all .3s;
}

.reference-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.reference-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.reference-card h3 {
  font-size: 16px;
  color: var(--primary);
  padding: 16px;
  margin: 0;
}

/* Requirements */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.req-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.req-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.req-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Process */
.process-steps {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 40px auto;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 18px;
  color: var(--primary);
  margin: 0 0 8px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-container {
  display: grid;
  gap: 12px;
  margin: 40px 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 20px 24px;
  cursor: pointer;
  transition: all .2s;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.faq-item summary {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.section-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #003d5e 100%);
  color: white;
}

.section-cta h2 {
  color: white;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 20px;
}

.footer .container {
  max-width: 1100px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.footer-logo p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.footer-reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
}

.review-item img {
  width: 24px;
  height: 24px;
}

.review-item strong {
  display: block;
  color: white;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-bottom a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-container {
    grid-template-columns: 1fr;
  }

  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

@media (max-width: 700px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 12px 24px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
    order: 3;
    width: 100%;
    margin-top: 12px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section h2 {
    font-size: 32px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-body {
    grid-template-columns: 1fr;
  }

  .case-person {
    max-width: 200px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .references-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
