/* ============================================================
   SekaiDC — Landing page styles (Khóa học, Góc kỹ thuật)
   ============================================================ */

/* ===== Big Hero ===== */
.lp-hero {
  position: relative;
  background: linear-gradient(135deg, #0d3823 0%, #156d3a 50%, #2b9d63 100%);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,235,59,0.12) 0, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08) 0, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(255,255,255,0.02) 60px 61px);
  pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; }
.lp-hero .lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 235, 59, 0.18);
  color: #ffeb3b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 800;
  color: #fff;
}
.lp-hero h1 span { color: #ffeb3b; }
.lp-hero .lp-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  max-width: 580px;
}
.lp-hero .lp-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.lp-btn-primary {
  background: #ffeb3b;
  color: #0d3823;
  border-color: #ffeb3b;
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,235,59,0.35);
}
.lp-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.lp-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-hero-visual .lp-card-float {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  position: absolute;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-size: 14px;
  width: 220px;
}
.lp-hero-visual .lp-card-float i { font-size: 24px; color: #ffeb3b; margin-bottom: 8px; }
.lp-hero-visual .lp-card-float strong { display: block; font-size: 18px; margin-bottom: 4px; }
.lp-hero-visual .lp-card-1 { top: 0; left: 20px; transform: rotate(-3deg); }
.lp-hero-visual .lp-card-2 { top: 130px; right: 0; transform: rotate(2deg); }
.lp-hero-visual .lp-card-3 { bottom: 0; left: 60px; transform: rotate(-1deg); }
.lp-hero-visual .lp-orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,235,59,0.3), rgba(255,235,59,0));
  filter: blur(20px);
}

/* ===== Stats Bar ===== */
.lp-stats-bar {
  background: #fff;
  margin-top: -50px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 5;
}
.lp-stat {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid #eee;
}
.lp-stat:last-child { border-right: none; }
.lp-stat .lp-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: #2b9d63;
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat .lp-stat-num small { font-size: 22px; color: #c62828; }
.lp-stat .lp-stat-label {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

/* ===== Section title ===== */
.lp-section { padding: 70px 0; }
.lp-section-alt { background: #f7faf8; }
.lp-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.lp-section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #1e824c;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0d3823;
  margin: 0 0 12px;
  line-height: 1.25;
}
.lp-section-sub {
  font-size: 17px;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== USP grid ===== */
.lp-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-usp {
  background: #fff;
  border: 1px solid #e6ecea;
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.lp-usp:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(43,157,99,0.12);
  border-color: #2b9d63;
}
.lp-usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2b9d63, #156d3a);
  color: #fff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(43,157,99,0.3);
}
.lp-usp h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: #0d3823;
  font-weight: 700;
}
.lp-usp p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== Course Tracks ===== */
.lp-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-track {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border: 1px solid #e6ecea;
  transition: transform 0.3s;
}
.lp-track:hover { transform: translateY(-6px); }
.lp-track .lp-track-banner {
  height: 140px;
  background: linear-gradient(135deg, #2b9d63, #156d3a);
  position: relative;
  overflow: hidden;
}
.lp-track .lp-track-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.18) 0, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,0.04) 40px 41px);
}
.lp-track .lp-track-icon {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffeb3b;
  font-size: 32px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.lp-track .lp-track-level {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,235,59,0.95);
  color: #0d3823;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  z-index: 2;
}
.lp-track-banner.bg-blue { background: linear-gradient(135deg, #0a4d8e, #0b72d9); }
.lp-track-banner.bg-purple { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }
.lp-track-banner.bg-orange { background: linear-gradient(135deg, #b45309, #f59e0b); }
.lp-track-banner.bg-red { background: linear-gradient(135deg, #7a1f1f, #c62828); }
.lp-track-banner.bg-teal { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.lp-track .lp-track-body { padding: 24px 28px; }
.lp-track h3 {
  font-size: 21px;
  margin: 0 0 8px;
  color: #0d3823;
}
.lp-track .lp-track-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}
.lp-track .lp-track-meta i { color: #2b9d63; margin-right: 4px; }
.lp-track p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
}
.lp-track ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.lp-track ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}
.lp-track ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #2b9d63;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.lp-track .lp-track-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed #e6ecea;
}
.lp-track .lp-price {
  font-weight: 800;
  color: #c62828;
  font-size: 20px;
}
.lp-track .lp-price small { font-size: 13px; color: #888; text-decoration: line-through; font-weight: 600; margin-right: 8px; }
.lp-track .lp-track-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2b9d63;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.lp-track .lp-track-cta:hover { background: #156d3a; gap: 10px; }

/* ===== Roadmap Timeline ===== */
.lp-roadmap {
  position: relative;
  margin: 30px 0;
}
.lp-roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #2b9d63, #ffeb3b, #c62828);
  transform: translateX(-50%);
  border-radius: 2px;
}
.lp-rm-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 30px;
  position: relative;
}
.lp-rm-circle {
  grid-column: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2b9d63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #2b9d63;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.lp-rm-card {
  background: #fff;
  padding: 22px 26px;
  border-radius: 14px;
  border: 1px solid #e6ecea;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  position: relative;
}
.lp-rm-card h4 {
  margin: 0 0 8px;
  color: #0d3823;
  font-size: 18px;
}
.lp-rm-card p { margin: 0; font-size: 14px; color: #555; line-height: 1.6; }
.lp-rm-card ul { margin: 8px 0 0; padding-left: 18px; font-size: 14px; color: #555; }
.lp-rm-card ul li { margin-bottom: 4px; }
.lp-rm-card .rm-tag {
  display: inline-block;
  background: #e9f9ef;
  color: #1e824c;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.lp-rm-item:nth-child(odd) .lp-rm-card { grid-column: 1; text-align: right; margin-right: 10px; }
.lp-rm-item:nth-child(even) .lp-rm-card { grid-column: 3; margin-left: 10px; }

/* ===== Equipment Grid ===== */
.lp-equipment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-eq {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6ecea;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
}
.lp-eq:hover {
  transform: translateY(-4px);
  border-color: #2b9d63;
  box-shadow: 0 12px 24px rgba(43,157,99,0.12);
}
.lp-eq i {
  font-size: 36px;
  color: #2b9d63;
  margin-bottom: 14px;
}
.lp-eq h4 {
  margin: 0 0 6px;
  color: #0d3823;
  font-size: 16px;
}
.lp-eq p { margin: 0; font-size: 13px; color: #6b7280; line-height: 1.5; }

/* ===== Instructors ===== */
.lp-instructors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-instructor {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6ecea;
  text-align: center;
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-instructor:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.lp-instructor .lp-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #2b9d63, #156d3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #2b9d63;
}
.lp-instructor .lp-avatar.bg-2 { background: linear-gradient(135deg, #0a4d8e, #0b72d9); box-shadow: 0 0 0 4px #0b72d9; }
.lp-instructor .lp-avatar.bg-3 { background: linear-gradient(135deg, #b45309, #f59e0b); box-shadow: 0 0 0 4px #f59e0b; }
.lp-instructor h4 { margin: 0 0 4px; color: #0d3823; font-size: 18px; }
.lp-instructor .lp-role {
  font-size: 13px;
  color: #c62828;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.lp-instructor p { font-size: 14px; color: #555; line-height: 1.6; margin: 0 0 12px; }
.lp-instructor .lp-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.lp-instructor .lp-tags span {
  font-size: 11px;
  background: #e9f9ef;
  color: #1e824c;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===== Testimonials ===== */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-testi {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e6ecea;
  position: relative;
}
.lp-testi::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: #2b9d63;
  opacity: 0.18;
  line-height: 1;
}
.lp-testi .lp-stars {
  color: #ffeb3b;
  margin-bottom: 10px;
  font-size: 16px;
}
.lp-testi p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: italic;
}
.lp-testi .lp-testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed #e6ecea;
  padding-top: 14px;
}
.lp-testi .lp-testi-foot .lp-mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2b9d63;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.lp-testi .lp-testi-foot .lp-mini-avatar.bg-2 { background: #0b72d9; }
.lp-testi .lp-testi-foot .lp-mini-avatar.bg-3 { background: #f59e0b; }
.lp-testi strong { display: block; color: #0d3823; font-size: 14px; }
.lp-testi small { color: #888; font-size: 13px; }

/* ===== Pricing ===== */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lp-price-card {
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e6ecea;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.lp-price-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.lp-price-card.popular {
  border-color: #2b9d63;
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(43,157,99,0.18);
}
.lp-price-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.lp-price-card .lp-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c62828;
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.lp-price-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #0d3823;
  text-align: center;
}
.lp-price-card .lp-price-tagline { text-align: center; color: #888; margin-bottom: 20px; font-size: 14px; }
.lp-price-card .lp-amount {
  text-align: center;
  font-size: 38px;
  color: #c62828;
  font-weight: 800;
  margin-bottom: 4px;
}
.lp-price-card .lp-amount small { font-size: 16px; color: #888; text-decoration: line-through; font-weight: 600; display: block; margin-bottom: 6px; }
.lp-price-card .lp-amount-suffix { display: block; text-align: center; font-size: 13px; color: #888; margin-bottom: 22px; }
.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.lp-price-card ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px dashed #f0f0f0;
}
.lp-price-card ul li:last-child { border-bottom: none; }
.lp-price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #2b9d63;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.lp-price-card ul li.disabled { color: #aaa; }
.lp-price-card ul li.disabled::before { content: "×"; background: #ccc; }
.lp-price-card .lp-price-cta {
  display: block;
  text-align: center;
  background: #2b9d63;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}
.lp-price-card .lp-price-cta:hover { background: #156d3a; }
.lp-price-card.popular .lp-price-cta { background: #c62828; }
.lp-price-card.popular .lp-price-cta:hover { background: #8b1a1a; }

/* ===== FAQ ===== */
.lp-faq { max-width: 880px; margin: 0 auto; }
.lp-faq details {
  background: #fff;
  border: 1px solid #e6ecea;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.lp-faq details[open] {
  border-color: #2b9d63;
  box-shadow: 0 6px 16px rgba(43,157,99,0.08);
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0d3823;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2b9d63;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform 0.2s;
}
.lp-faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.lp-faq details p {
  margin: 14px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Big CTA ===== */
.lp-cta {
  background: linear-gradient(135deg, #c62828 0%, #8b1a1a 100%);
  border-radius: 20px;
  padding: 60px 50px;
  color: #fff;
  text-align: center;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,235,59,0.15) 0, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08) 0, transparent 40%);
}
.lp-cta > * { position: relative; z-index: 2; }
.lp-cta h2 {
  font-size: 36px;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 800;
}
.lp-cta p {
  font-size: 18px;
  margin: 0 0 26px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.lp-cta .lp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .lp-hero .container { grid-template-columns: 1fr; gap: 30px; }
  .lp-hero h1 { font-size: 36px; }
  .lp-hero-visual { display: none; }
  .lp-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-stat { border-right: none; }
  .lp-stat:nth-child(odd) { border-right: 1px solid #eee; }
  .lp-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-tracks { grid-template-columns: 1fr; }
  .lp-equipment { grid-template-columns: repeat(2, 1fr); }
  .lp-instructors { grid-template-columns: 1fr; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-price-card.popular { transform: none; }
  .lp-roadmap::before { left: 30px; }
  .lp-rm-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .lp-rm-circle { grid-column: 1; }
  .lp-rm-item:nth-child(odd) .lp-rm-card,
  .lp-rm-item:nth-child(even) .lp-rm-card {
    grid-column: 2;
    text-align: left;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .lp-hero { padding: 50px 0 70px; }
  .lp-hero h1 { font-size: 28px; }
  .lp-section { padding: 50px 0; }
  .lp-section-title { font-size: 26px; }
  .lp-stats-bar { grid-template-columns: 1fr; }
  .lp-stat { border-right: none !important; padding: 16px 0; border-bottom: 1px solid #eee; }
  .lp-stat:last-child { border-bottom: none; }
  .lp-usp-grid { grid-template-columns: 1fr; }
  .lp-equipment { grid-template-columns: 1fr; }
  .lp-cta { padding: 40px 24px; }
  .lp-cta h2 { font-size: 24px; }
}
