:root {
  --primary-dark: #1a1a1a;
  --secondary-text: #4a4a4a;
  --tertiary-text: #7a7a7a;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --border-light: #e8e8e8;
  --accent-blue: #3b82f6;
  --dark-blue: #1e3a8a;
  --danger-red: #ef4444;
  --success-green: #10b981;
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  color: var(--primary-dark);
  background: var(--white);
  line-height: 1.6;
}

.btn-primary-h {
  background: var(--accent-blue);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-h:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-secondary-h {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary-h:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #2563eb;
  color: #2563eb;
}

section {
  padding: 70px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

section:nth-of-type(even) {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}

.section-header p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero {
  padding: 80px 0 90px;
  background: var(--white);
  text-align: center;
}
@media (min-width: 900px) {
  .hero {
    padding: 110px 0 120px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 50px 0 60px;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

.hl-accent {
  color: var(--accent-blue);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
@media (max-width: 576px) {
  .hero-sub {
    font-size: 0.97rem;
  }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
  }
  .hs-item:nth-child(2) {
    border-right: none;
  }
  .hs-item:nth-child(3),
  .hs-item:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }
}
.hs-item {
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background 0.2s;
}
.hs-item:last-child {
  border-right: none;
}
@media (max-width: 480px) {
  .hs-item:nth-child(4) {
    border-right: none;
  }
}
.hs-item:hover {
  background: rgba(59, 130, 246, 0.03);
}
.hs-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .hs-val {
    font-size: 1.4rem;
  }
}
.hs-lbl {
  font-size: 0.68rem;
  color: var(--tertiary-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.apex-section-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .apex-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.apex-sticky-col {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 1024px) {
  .apex-sticky-col {
    position: static;
  }
}

.apex-img-card {
  border-radius: 20px;
  overflow: hidden;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0px);
  }
}

.apex-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

.apex-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.apex-img-placeholder .placeholder-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-blue), #2563eb);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.apex-img-placeholder h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.apex-img-placeholder p {
  font-size: 0.82rem;
  color: var(--tertiary-text);
  margin: 0;
}

.apex-img-badge {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.apex-img-badge .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success-green);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.apex-img-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-text);
}

.apex-content-col .section-header {
  text-align: left;
  margin-bottom: 2rem;
}
.apex-content-col .section-header h2 {
  font-size: 2rem;
}

.problem-box,
.solution-box {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}

.box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.box-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-box .box-icon {
  background: rgba(239, 68, 68, 0.1);
}
.solution-box .box-icon {
  background: rgba(16, 185, 129, 0.1);
}

.box-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-dark);
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

.list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.list-icon-x {
  background: rgba(239, 68, 68, 0.1);
}
.list-icon-ok {
  background: rgba(16, 185, 129, 0.1);
}

.cta-banner {
  background: linear-gradient(135deg, var(--accent-blue), #2563eb);
  color: white;
  padding: 24px;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}
.cta-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.process-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
}

.process-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.process-card:hover .process-icon {
  background: var(--accent-blue);
  transform: scale(1.08);
}
.process-card:hover .process-icon svg {
  stroke: white !important;
}

.process-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.process-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.benefit-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
  transform: translateY(-5px);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.benefit-card:hover .benefit-icon {
  background: var(--accent-blue);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}
.benefit-card:hover .benefit-icon svg {
  stroke: white !important;
}
.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}
.benefit-card:hover h4 {
  color: var(--accent-blue);
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.faq-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.faq-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.faq-icon-danger {
  background: rgba(239, 68, 68, 0.1);
}
.faq-icon-warning {
  background: rgba(245, 158, 11, 0.1);
}
.faq-icon-blue {
  background: rgba(59, 130, 246, 0.1);
}

.faq-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.faq-card p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin: 0;
  line-height: 1.5;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

.journey-step {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.journey-step:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.journey-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition:
    background 0.3s,
    transform 0.3s;
}
.journey-step:hover .journey-icon {
  background: var(--accent-blue);
  transform: scale(1.08);
}
.journey-step:hover .journey-icon svg {
  stroke: white !important;
}

.journey-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.journey-step p {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, #2c5282 0%, #3a5f8f 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 30px;
  }
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-light {
  background: white;
  color: #2c5282;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cta-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
