/* =========================================================
   🌐 Global Styles
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

/* =========================================================
   🦸‍♂️ Hero Section
========================================================= */
.hero {
  background: linear-gradient(135deg, #009688, #00796b);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ff9800;
  color: #fff;
}
.btn.primary:hover {
  background: #e68900;
}

.btn.secondary {
  background: #ffffff;
  color: #00796b;
}
.btn.secondary:hover {
  background: #f0f0f0;
}

.btn.tertiary {
  background: #004d40;
  color: #fff;
}
.btn.tertiary:hover {
  background: #00362e;
}

.hero-image img {
  width: 280px;
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

/* =========================================================
   ⚙️ Features Section
========================================================= */
.features {
  padding: 6rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

/* --- Pyramid Layout --- */
.features-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.features-pyramid .row {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.features-pyramid .top .feature-card,
.features-pyramid .bottom .feature-card {
  width: 320px;
}

.features-pyramid .middle .feature-card {
  width: 360px;
  transform: translateY(10px);
}

.features-pyramid .row.middle {
  margin-top: -1rem;
}

/* --- Feature Card --- */
.feature-card.futuristic {
  background: linear-gradient(145deg, #ffffff, #f0f7f6);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card.futuristic:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 150, 136, 0.25);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #009688, #00796b);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #004d40;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.micro-benefit {
  font-size: 0.9rem;
  color: #009688;
  font-weight: 600;
  display: block;
}

/* =========================================================
   📱 Screenshot Showcase (2×2 Responsive Grid)
========================================================= */
.showcase {
  background: #eef8f7;
  padding: 5rem 1rem;
  text-align: center;
}

.showcase h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.screenshot-grid img {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 150, 136, 0.3);
}

/* ✅ Mobile: switch to 2×2 grid */
@media (max-width: 768px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .screenshot-grid img {
    width: 100%;
    max-width: 180px;
  }
}

/* ✅ Tiny screens */
@media (max-width: 500px) {
  .screenshot-grid img {
    max-width: 160px;
  }
}

/* =========================================================
   🚀 Final CTA Section
========================================================= */
.cta-final {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #009688, #004d40);
  text-align: center;
  color: #fff;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* =========================================================
   📍 Footer
========================================================= */
.footer {
  background: #002f27;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* =========================================================
   ✨ Animations
========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

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

/* =========================================================
   📱 Responsive
========================================================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .features-pyramid .row {
    flex-direction: column;
    align-items: center;
  }

  .features-pyramid .feature-card {
    width: 90%;
  }

  .features-pyramid .middle .feature-card {
    transform: none;
  }
}
.ribbon {
  position: absolute;
  top: 10px;
  left: -21px;
  transform: rotate(-45deg);
  background: #ff9800;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}



/* =========================================================
   📬 Modal
========================================================= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.modal-content .btn {
  margin-top: 1rem;
  width: 100%;
}

.close, .close-early {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
}
.icon-circle img.icon-img {
  width: 60%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
footer.footer {
  background: #0f3d3e; /* or whatever fits your design */
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

footer.footer a {
  color: orange;
  text-decoration: none;
  margin: 0 5px;
}

footer.footer a:hover {
  text-decoration: underline;
}
/* =========================================================
   ⚖️ Legal Pages
========================================================= */
.legal-container {
  background: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-radius: 20px;
  text-align: left;
}

.legal-container h2 {
  font-size: 1.4rem;
  color: #ff9800;
  margin-top: 2rem;
}

.legal-container p,
.legal-container li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.back-home,
.legal-container .btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-home:hover,
.legal-container .btn:hover {
  background: #009688;
}
.modal-content select {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}
.privacy-consent {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.privacy-consent a {
  color: #00796b;
  text-decoration: underline;
}
