/* ===== Base ===== */
.lp-page {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #0b1320;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.lp-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 60px;
  gap: 60px;
}

/* ===== HERO VISUAL: 3D CONTAINER ===== */
.lp-hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  overflow: hidden;
  border-radius: 30px;
  perspective: 1200px; /* Creates 3D depth space */
  transform-style: preserve-3d;
  flex-shrink: 0;
}

/* ===== STANDING IMAGE: Right-side positioned, standing on edge ===== */
.lp-hero-visual .lp-hero-image {
  position: absolute;
  right: 7%; /* Positions on right side */
  bottom: 15%; /* Sits on "floor" of container */
  transform: rotateY(-35deg) rotateX(10deg);
  transform-origin: bottom center; /* Pivots from bottom edge */
  max-width: 100%; /* Narrower when standing on edge */
  max-height: 100%;
  width: 100%;
  height: 70%;
  z-index: 2;
  display: block;
  box-shadow:
    8px 12px 25px rgba(0, 0, 0, 0.35),
    /* Right shadow (thickness) */ 0 15px 40px rgba(0, 0, 0, 0.4); /* Bottom drop shadow */
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
}

/* ===== ADD THICKNESS EDGE (3D Illusion) ===== */
.lp-hero-visual .lp-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px; /* Creates visible edge thickness */
  width: 8px;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transform: skewY(-10deg);
  border-radius: 2px;
  z-index: -1;
}

/* ===== FRAME STAYS ON TOP ===== */
.lp-frame {
  z-index: 3;
  pointer-events: none;
}

.lp-eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #1cc88a;
  font-weight: 600;
}

.lp-hero h1 {
  font-size: 3.2rem;
  margin: 20px 0;
  line-height: 1.15;
  animation: fadeUp 1s ease forwards;
}

.lp-hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease forwards;
}

.lp-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.lp-btn-primary {
  background: linear-gradient(135deg, #1cc88a, #17a673);
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(28, 200, 138, 0.4);
  transition: all 0.35s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(28, 200, 138, 0.6);
}

.lp-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 38px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero Visual */
.lp-hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
}

.lp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: float 7s ease-in-out infinite;
}

.lp-green {
  background: #1cc88a;
  width: 220px;
  height: 220px;
  top: 40px;
  left: 40px;
}

.lp-blue {
  background: #4e73df;
  width: 260px;
  height: 260px;
  bottom: 30px;
  right: 30px;
  animation-delay: 2s;
}

.lp-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
}

/* ===== VALUES ===== */
.lp-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 100px 60px;
  background: #0f172a;
}

.lp-value {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.lp-value:hover {
  transform: translateY(-10px);
}

/* ===== PROCESS ===== */
.lp-process {
  padding: 120px 60px;
  text-align: center;
}

.lp-process h2 {
  font-size: 2.6rem;
  margin-bottom: 60px;
}

.lp-steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-step {
  max-width: 300px;
}

.lp-step span {
  font-size: 2.5rem;
  color: #1cc88a;
  font-weight: 700;
}

/* ===== CTA ===== */
.lp-cta {
  padding: 60px 40px;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(28, 200, 138, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(78, 115, 223, 0.35),
      transparent 60%
    ),
    #0b1320;
}

.lp-cta-paragraph {
  margin-top: 0;
  margin-bottom: 3rem;
}

.lp-cta-inner .lp-cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  padding: 30px;
  border-radius: 30px;
  align-content: center;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .lp-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }

  .lp-hero-content {
    margin-bottom: 30px;
  }

  .lp-hero-visual {
    width: 80%;
    height: auto;
  }

  .lp-hero-visual .lp-hero-image {
    position: relative;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .lp-values {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .lp-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .lp-step {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .lp-cta-inner .lp-cta-actions {
    flex-direction: column;
    align-items: center; /* center buttons */
    gap: 15px; /* space between stacked buttons */
  }

  .lp-cta-inner .lp-cta-actions a {
    width: 80%; /* optional: make buttons wider and easier to tap */
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lp-hero h1 {
    font-size: 2rem;
  }

  .lp-hero p {
    font-size: 1rem;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .lp-values,
  .lp-steps {
    gap: 20px;
  }
}

/* Footer */

.footer-names {
  color: white;
}
.p,
footer {
  font-size: 1rem;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-cta {
  background: linear-gradient(135deg, #203a43, #2c5364);
  text-align: center;
  padding: 3rem 1rem;
}

.footer-cta h3 {
  color: lightgray;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #0a66c2;
}

.footer-year {
  color: white;
  text-align: center;
  padding: 15px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}
