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

:root {
  --blue: #0018c8;
  --blue-dark: #0012a0;
  --blue-light: #eef0ff;
  --orange: #f97316;
  --orange-hover: #ea580c;
  --purple-muted: #7c83c9;
  --text: #111827;
  --muted: #4b5563;
  --footer: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 0.75rem 0 0.5rem;
  text-align: center;
}

.logo-link {
  display: inline-block;
}

.logo {
  display: block;
  height: auto;
  width: min(100px, 45vw);
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 0 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 24, 200, 0.12);
  margin-bottom: 2rem;
  min-height: 220px;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.before-after .label {
  position: absolute;
  top: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.before-after .label-before {
  left: 12px;
}

.before-after .label-after {
  left: calc(50% + 12px);
}

.cta-panel {
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-panel h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cta-panel .lead {
  margin: 0 auto 1.25rem;
  max-width: 640px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.cta-inner {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.cta-inner p {
  margin: 0 0 1rem;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-hover);
}

.btn-muted {
  background: var(--purple-muted);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue);
}

.btn-call {
  width: 100%;
  max-width: 360px;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
}

.cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  opacity: 0.85;
}

.cta-hidden {
  display: none;
}

.section-title {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-card {
  border-radius: 18px;
  padding: 1.5rem;
}

.feature-card.light {
  background: var(--blue-light);
  color: var(--text);
}

.feature-card.dark {
  background: var(--blue);
  color: #fff;
}

.feature-card h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list .icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.trust-grid h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.trust-grid p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.bottom-cta {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 0;
}

.bottom-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.bottom-cta .lead {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

.bottom-inner {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}

.site-footer {
  background: var(--footer);
  color: #d1d5db;
  padding: 2rem 1rem;
  text-align: center;
}

.site-footer p {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.78rem;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    min-height: 180px;
  }

  .before-after img {
    min-height: 180px;
  }
}
