*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Poppins,sans-serif;background:#fff;color:#111}
img{max-width:100%;border-radius:16px}

.container{max-width:1200px;margin:auto;padding:0 20px}
.header{position:sticky;top:0;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.08);z-index:999}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:80px}
.logo{font-size:22px;font-weight:700;color:#2563eb}
.nav a{margin:0 14px;font-weight:500;position:relative}
.nav a::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:#2563eb;transition:.3s}
.nav a:hover::after{width:100%}

.btn{padding:12px 22px;border-radius:12px;font-weight:600;cursor:pointer;transition:.3s}
.primary{background:#2563eb;color:#fff}
.outline{border:2px solid #2563eb;color:#2563eb}
.glow:hover{box-shadow:0 0 20px #2563eb}
.pulse{animation:pulse 1.8s infinite}

.hero{padding:100px 0;background:linear-gradient(135deg,#eef2ff,#fff)}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.hero h1{font-size:46px}
.hero h1 span{color:#2563eb}

.section{padding:90px 0}
.dark{background:#0f172a;color:#fff}

.features-grid,.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px}
.feature-card,.pricing-card{background:#fff;color:#111;padding:30px;border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.1);transition:.4s}
.feature-card:hover,.pricing-card:hover{transform:translateY(-12px)}

.featured{border:3px solid #2563eb}

.steps{display:flex;gap:30px;justify-content:space-between}
.step{background:#fff;color:#111;padding:30px;border-radius:18px;box-shadow:0 15px 40px rgba(0,0,0,.12);text-align:center}

.footer{background:#020617;color:#cbd5f5;padding:70px 0}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px}
.copy{text-align:center;margin-top:40px;font-size:14px}

.fade-up{animation:fadeUp 1s ease}
.zoom-in{animation:zoomIn 1s ease}
.slide-left{animation:slideLeft 1s ease}
.slide-right{animation:slideRight 1s ease}
.bounce{animation:bounce 2s infinite}

.lr-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

/* COMMON CARD STYLE */
.lr-card {
  background: #ffffff;
  color: #111;
  border-radius: 22px;
  border: 2px solid transparent;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.lr-card:hover {
  transform: translateY(-10px);
}

/* IMAGE SECTION */
.lr-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.lr-content {
  padding: 28px 30px 34px;
}

.lr-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lr-content ul {
  list-style: none;
}

.lr-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

/* PROBLEM STYLE */
.problem-card {
  border-color: #ef4444;
}

.problem-card h3 {
  color: #ef4444;
}

.problem-card li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

/* SOLUTION STYLE */
.solution-card {
  border-color: #2563eb;
}

.solution-card h3 {
  color: #2563eb;
}

.solution-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lr-wrapper {
    grid-template-columns: 1fr;
  }
}


.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
}

.pricing-action {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}

.pricing-action .btn {
  width: 100%;
}


.highlight-section {
  position: relative;
  overflow: hidden;
}

.highlight-wrapper {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  min-height: 520px;
}

/* COMMON SIDE STYLE */
.highlight-side {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-side h2 {
  font-size: 34px;
  margin-bottom: 30px;
  font-weight: 700;
}

.highlight-side ul {
  list-style: none;
}

.highlight-side li {
  font-size: 17px;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

/* PROBLEM SIDE */
.problem-side {
  background: linear-gradient(135deg, #7f1d1d, #ef4444);
  color: #fff;
  clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%);
}

.problem-side li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #feca
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-subtext {
  font-size: 18px;
  color: #374151;
  max-width: 520px;
}

.hero-points {
  margin-top: 10px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;   /* 🔥 MAIN FIX */
  flex-wrap: wrap;
}

.hero-cta .btn {
  min-width: 180px;
  text-align: center;
}


@keyframes fadeUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:none}}
@keyframes zoomIn{from{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}
@keyframes slideLeft{from{opacity:0;transform:translateX(-60px)}to{opacity:1;transform:none}}
@keyframes slideRight{from{opacity:0;transform:translateX(60px)}to{opacity:1;transform:none}}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(37,99,235,.6)}70%{box-shadow:0 0 0 20px rgba(37,99,235,0)}100%{box-shadow:0 0 0 0}}

@media(max-width:900px){
.hero-grid{grid-template-columns:1fr}
.steps{flex-direction:column}
}
