*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #f5f3ef; --text-dark: #1a2a3a; }
html { scroll-behavior: smooth; }
body { font-family: 'Heebo', sans-serif; background: var(--bg); color: var(--text-dark); overflow-x: hidden; }

.hero {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  position: relative;
  padding: 16px 20px 50px;
  background: linear-gradient(160deg, #0a1628 0%, #0d2145 50%, #0a3060 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1.5px solid rgba(33,150,243,0.12);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ripple 4s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute;
  width: 1000px; height: 1000px; border-radius: 50%;
  border: 1px solid rgba(0,188,212,0.07);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ripple 4s ease-in-out infinite 1.5s;
}
@keyframes ripple {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:1; }
  50%      { transform: translate(-50%,-50%) scale(1.06); opacity:0.5; }
}

.hero-badge {
  position: absolute; top: 12px; left: 14px; z-index: 10;
  background: linear-gradient(135deg, #005ae0, #00b4f0);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
}

.logo-wrap {
  position: relative; z-index: 1;
  width: 100%;
  display: flex; justify-content: center;
  margin-bottom: 8px;
  animation: fadeUp 0.7s ease both;
}
.logo-wrap img {
  width: 380px; max-width: 86vw;
  filter: drop-shadow(0 8px 32px rgba(33,150,243,0.4));
}

.hero h1 {
  font-size: clamp(34px, 7vw, 76px); font-weight: 900; line-height: 1.2;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s ease 0.1s both;
}
.line-red  { color: #ff4444; display: block; }
.line-blue { color: #5bc8ff; display: block; }

.hero-subtitle {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease 0.18s both;
}
@media (max-width: 480px) {
  .hero-subtitle { font-size: 22px; }
}

.checklist-banner {
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  max-width: 480px; width: 90%;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.25s both;
}
.check-row {
  display: flex; align-items: center;
  flex-direction: row;
  gap: 14px;
  padding: 14px 20px;
}
.check-row:nth-child(1) { background: #005ae0; }
.check-row:nth-child(2) { background: #0096f0; }
.check-row:nth-child(3) { background: #00b4f0; }
.check-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25c45a; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 20px; height: 20px; }
.check-text {
  font-size: clamp(18px, 3vw, 24px); font-weight: 900;
  color: #fff; text-align: right; flex: 1;
}

.hero-ctas {
  display: flex; gap: 14px; margin-top: 18px;
  flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 1s ease 0.35s both;
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-size: 17px; font-weight: 700;
  padding: 16px 32px; border-radius: 14px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-size: 17px; font-weight: 700;
  padding: 11px 28px; border-radius: 14px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: transform 0.2s, border-color 0.2s;
}
.btn-call:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.6); }
.btn-call img { width: 22px; height: 22px; flex-shrink: 0; display: block; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

.trust-bar { background: #fff; border-top: 1px solid #e0dbd0; border-bottom: 1px solid #e0dbd0; padding: 28px 20px; }
.trust-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-num  { font-size: 32px; font-weight: 900; color: #1565c0; }
.trust-label{ font-size: 13px; color: #666; }

.section     { padding: 80px 20px; background: var(--bg); }
.section-alt { padding: 80px 20px; background: #ebe8e0; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-title { font-size: clamp(24px,4vw,40px); font-weight: 900; text-align: center; margin-bottom: 14px; color: var(--text-dark); }
.section-sub   { text-align: center; color: #666; font-size: 16px; margin-bottom: 50px; }

.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:600px){ .problems-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff; border: 1px solid #ddd; border-radius: 16px;
  padding: 32px 20px; text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { border-color: #2196f3; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(33,150,243,0.12); }
.problem-icon  { font-size: 44px; margin-bottom: 16px; }
.problem-title { font-size: 16px; font-weight: 700; color: var(--text-dark); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); }
.step { padding: 30px 24px; text-align: center; position: relative; }
.step:not(:last-child)::after { content:'←'; position:absolute; left:-12px; top:50%; transform:translateY(-50%); font-size:22px; color:#2196f3; opacity:0.4; }
.step-num { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#2196f3,#00bcd4); display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:900; color:#fff; margin:0 auto 16px; box-shadow:0 6px 24px rgba(33,150,243,0.3); }
.step-title { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.step-desc  { font-size:13px; color:#666; line-height:1.6; }

.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.why-card { background:#fff; border:1px solid #ddd; border-radius:16px; padding:30px 22px; transition:border-color 0.2s, box-shadow 0.2s; }
.why-card:hover { border-color:#00bcd4; box-shadow:0 8px 24px rgba(0,188,212,0.1); }
.why-icon  { font-size:30px; margin-bottom:14px; }
.why-title { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.why-desc  { font-size:13px; color:#666; line-height:1.65; }

.cta-section { background:linear-gradient(135deg,#0d2145,#0a3060); padding:80px 20px; }
.cta-box { max-width:560px; margin:0 auto; text-align:center; }
.cta-box h2 { font-size:clamp(24px,4vw,38px); font-weight:900; margin-bottom:12px; color:#fff; }
.cta-box p  { color:rgba(255,255,255,0.65); margin-bottom:36px; font-size:16px; }
.wa-big { display:inline-flex; align-items:center; gap:14px; background:#25d366; color:#fff; font-size:20px; font-weight:900; padding:20px 40px; border-radius:16px; text-decoration:none; box-shadow:0 10px 40px rgba(37,211,102,0.4); transition:transform 0.2s, box-shadow 0.2s; margin-bottom:20px; }
.wa-big:hover { transform:translateY(-4px); box-shadow:0 18px 50px rgba(37,211,102,0.55); }
.or-divider { color:rgba(255,255,255,0.3); font-size:14px; margin:16px 0; }
.call-link { display:inline-flex; align-items:center; gap:10px; color:rgba(255,255,255,0.75); font-size:17px; font-weight:600; text-decoration:none; transition:color 0.2s; }
.call-link:hover { color:#fff; }

footer { padding:30px 20px; text-align:center; color:#aaa; font-size:13px; background:#fff; border-top:1px solid #e0dbd0; }
.footer-links { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-top:10px; }
.footer-links a { color:#1565c0; font-size:13px; text-decoration:underline; cursor:pointer; background:none; border:none; font-family:inherit; }
.footer-links a:hover { color:#0a3060; }

.sticky-wa { position:fixed; bottom:28px; left:28px; width:60px; height:60px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 24px rgba(37,211,102,0.5); text-decoration:none; z-index:999; animation:pulse-wa 2.5s ease-in-out infinite; }
.sticky-wa:hover { transform:scale(1.1); }
@keyframes pulse-wa { 0%,100% { box-shadow:0 6px 24px rgba(37,211,102,0.5); } 50% { box-shadow:0 6px 40px rgba(37,211,102,0.8); } }

@media(max-width:600px){ .step:not(:last-child)::after { display:none; } .hero-ctas { flex-direction:column; align-items:center; } }
