/* ═══════════════════════════════════════════════════
   LANDING PAGE — Professional Homepage
   ═══════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

/* Override screen.active for landing page to allow scrolling */
#main-screen.active {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ─── Navbar ─── */
.lana-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
  transition: all 0.4s ease;
}

[data-theme="dark"] .lana-navbar {
  background: rgba(26, 46, 26, 0.8);
  border-bottom: 1px solid rgba(46, 204, 113, 0.15);
}

.lana-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(46, 204, 113, 0.12);
}

[data-theme="dark"] .lana-navbar.scrolled {
  background: rgba(26, 46, 26, 0.95);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--lana-green);
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.navbar-links a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.navbar-links a:hover {
  background: var(--lana-lightest);
  color: var(--text-primary);
}

.navbar-cta {
  background: var(--lana-blue);
  color: #fff !important;
  padding: 0.55rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--lana-dark);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.navbar-hamburger {
  display: none;
  background: none;
  border: 2px solid var(--card-border);
  border-radius: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.navbar-mobile.show {
  display: flex;
}

.navbar-mobile a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.navbar-mobile a:hover {
  background: var(--lana-lightest);
}

/* ─── Navbar Actions Group ─── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid var(--card-border);
  background: var(--card-bg);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.navbar-icon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(46, 204, 113, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-icon-btn:hover::before {
  opacity: 1;
}

.navbar-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
  border-color: var(--lana-medium);
}

.navbar-icon-btn:active {
  transform: translateY(0);
}

.navbar-icon-emoji {
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* Mobile menu theme button */
.navbar-mobile-theme {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-body);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.navbar-mobile-theme:hover {
  background: var(--lana-lightest);
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-hamburger {
    display: block;
  }
}

/* ─── Hero Section ─── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Spline 3D background */
.hero-spline-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 0;
  overflow: hidden;
}

.hero-spline-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
}

/* Gradient fades */
.hero-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--lana-bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--lana-bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  z-index: 2;
  animation: heroFadeIn 1s ease-out;
  padding: 2.5rem;
  margin-right: 5%;
  margin-left: auto;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-title {
  font-size: clamp(2.2rem, 6vw + 1rem, 4.5rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--lana-blue), var(--lana-medium), #56d079);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typewriter {
  color: var(--text-primary);
  border-left: 3px solid var(--lana-blue);
  padding-left: 0.3rem;
  animation: blink-cursor 0.8s step-end infinite;
  min-height: 1.3em;
}

@keyframes blink-cursor {

  0%,
  100% {
    border-color: var(--lana-blue);
  }

  50% {
    border-color: transparent;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.35s ease;
  font-family: 'Cairo', sans-serif;
}

.hero-btn-primary {
  background: var(--lana-blue);
  color: #fff;
  border: 3px solid var(--lana-dark);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(46, 204, 113, 0.45);
}

.hero-btn-ghost {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 3px solid var(--card-border);
}

.hero-btn-ghost:hover {
  background: var(--lana-lightest);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--card-shadow);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  z-index: 2;
  animation: heroFadeIn 1.2s ease-out 0.3s both;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 3px solid var(--card-border);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  box-shadow: 8px 8px 0px var(--card-shadow);
  transition: all 0.4s ease;
}

.hero-mini-card:hover {
  transform: translateY(-5px) translateX(-5px);
  box-shadow: 12px 12px 0px var(--card-shadow);
}

.hmc-1 {
  animation: slideInCard 0.7s ease-out 0.5s both;
}

.hmc-2 {
  animation: slideInCard 0.7s ease-out 0.7s both;
}

.hmc-3 {
  animation: slideInCard 0.7s ease-out 0.9s both;
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.hmc-icon {
  font-size: 2.2rem;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lana-lightest);
  border-radius: 14px;
  border: 2px solid var(--card-border);
  flex-shrink: 0;
}

.hmc-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
}

/* Floating Emojis */
.hero-floating {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-float-1 {
  top: 15%;
  left: 5%;
  animation: floatAround 8s ease-in-out infinite;
}

.hero-float-2 {
  top: 25%;
  right: 8%;
  animation: floatAround 10s ease-in-out infinite 1s;
}

.hero-float-3 {
  bottom: 20%;
  left: 10%;
  animation: floatAround 9s ease-in-out infinite 2s;
}

.hero-float-4 {
  bottom: 30%;
  right: 15%;
  animation: floatAround 7s ease-in-out infinite 0.5s;
}

.hero-float-5 {
  top: 60%;
  left: 50%;
  animation: floatAround 11s ease-in-out infinite 3s;
}

@keyframes floatAround {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(15px, -20px) rotate(5deg);
  }

  50% {
    transform: translate(-10px, -35px) rotate(-5deg);
  }

  75% {
    transform: translate(20px, -15px) rotate(3deg);
  }
}

/* ─── Landing Sections ─── */
.landing-section {
  width: 100%;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--lana-lightest);
  border: 2px solid rgba(46, 204, 113, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(46, 204, 113, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .feature-card {
  background: rgba(16, 36, 23, 0.6);
  border-color: rgba(46, 204, 113, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 0%, rgba(46, 204, 113, 0.1), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--lana-medium);
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.25);
  background: var(--card-bg);
}

[data-theme="dark"] .feature-card:hover {
  background: rgba(22, 54, 32, 0.8);
  border-color: var(--lana-medium);
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lana-lightest);
  border-radius: 20px;
  border: 3px solid var(--card-border);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 6px 6px 0px var(--card-shadow);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 8px 8px 0px var(--card-shadow);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── How It Works ─── */
.how-section {
  background: var(--lana-lightest);
}

[data-theme="dark"] .how-section {
  background: rgba(30, 58, 30, 0.5);
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  right: 27px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg, var(--lana-blue), var(--lana-medium), var(--lana-light));
  border-radius: 3px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: right;
}

.step-number {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: var(--lana-blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--card-bg);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-item:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.5);
}

.step-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(46, 204, 113, 0.15);
  border-radius: 18px;
  padding: 1.5rem;
  flex: 1;
  transition: var(--transition);
  box-shadow: 4px 4px 0px rgba(46, 204, 113, 0.15);
}

[data-theme="dark"] .step-content {
  background: rgba(16, 36, 23, 0.5);
  border-color: rgba(46, 204, 113, 0.2);
  box-shadow: 4px 4px 0px rgba(46, 204, 113, 0.1);
}

.step-item:hover .step-content {
  transform: translateX(-5px);
  box-shadow: 8px 8px 0px rgba(46, 204, 113, 0.25);
  background: var(--lana-lightest);
}

[data-theme="dark"] .step-item:hover .step-content {
  background: rgba(22, 54, 32, 0.7);
  box-shadow: 8px 8px 0px rgba(46, 204, 113, 0.2);
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Stats Section ─── */
.stats-section {
  background: linear-gradient(135deg, var(--lana-blue), #1a8a4a, var(--lana-medium));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(400px 400px at 80% 70%, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.3rem;
  direction: ltr;
}

.stat-number::after {
  content: "+";
  font-size: 0.6em;
}

.stat-label-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

/* ─── Login Landing Enhancement ─── */
.login-landing {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.login-landing .cards-container {
  margin-top: 1rem;
}

/* ─── Footer ─── */
.lana-footer {
  width: 100%;
  background: var(--card-bg);
  border-top: 3px solid var(--card-border);
  padding: 3rem 2rem 2rem;
  z-index: 2;
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  text-align: right;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-col .footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
}

.footer-brand-desc {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-trust-badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--lana-lightest);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.footer-col-links h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col-links a,
.footer-col-links span {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-col-links a:hover {
  color: var(--text-primary);
  transform: translateX(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── Trusted By Section ─── */
.trusted-section {
  width: 100%;
  padding: 3rem 1rem;
  background: var(--lana-bg);
  border-bottom: 2px dashed var(--card-border);
  text-align: center;
}

.trusted-title {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(46, 204, 113, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default;
}

[data-theme="dark"] .trusted-logo {
  background: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.2);
}

.trusted-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
  background: var(--lana-lightest);
}

[data-theme="dark"] .trusted-logo:hover {
  background: rgba(46, 204, 113, 0.15);
}

/* ─── FAQ Section ─── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(46, 204, 113, 0.15);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

[data-theme="dark"] .faq-item {
  background: rgba(20, 40, 25, 0.5);
  border-color: rgba(46, 204, 113, 0.2);
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(46, 204, 113, 0.12);
  border-color: var(--lana-medium);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

.faq-icon {
  color: var(--lana-medium);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

/* ─── Newsletter Section ─── */
.footer-newsletter {
  background: var(--lana-lightest);
  border: 4px solid var(--card-border);
  border-radius: 22px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 8px 8px 0px var(--card-shadow);
}

.newsletter-content {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.newsletter-input {
  width: 300px;
  max-width: 100%;
  margin-bottom: 0 !important;
}

.newsletter-btn {
  margin-top: 0 !important;
  white-space: nowrap;
}

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

  .footer-trust-badges {
    justify-content: center;
  }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-content {
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    justify-content: center;
  }

  .newsletter-input {
    width: 100%;
  }

  .trusted-logos {
    gap: 1rem;
  }

  .trusted-logo {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}

/* ─── Scroll Reveal Animation ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for cards */
.cards-container .scroll-reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.cards-container .scroll-reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.cards-container .scroll-reveal:nth-child(3) {
  transition-delay: 0.4s;
}

.features-grid .scroll-reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.features-grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.features-grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.4s;
}

.stats-grid .scroll-reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.stats-grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.stats-grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.25s;
}

.stats-grid .scroll-reveal:nth-child(4) {
  transition-delay: 0.35s;
}

.steps-timeline .scroll-reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.steps-timeline .scroll-reveal:nth-child(2) {
  transition-delay: 0.3s;
}

.steps-timeline .scroll-reveal:nth-child(3) {
  transition-delay: 0.5s;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 5rem 1.5rem 3rem;
    gap: 2rem;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 100%;
  }

  .landing-section {
    padding: 3rem 1.5rem;
  }

  .steps-timeline::before {
    right: 24px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════
   PHASE 2 — Premium Enhancements
   ═══════════════════════════════════════════════════ */

/* ─── Hero Particle Canvas ─── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Hero Badge Pill ─── */
.hero-badge {
  display: inline-block;
  background: var(--lana-lightest);
  border: 2px solid var(--card-border);
  border-radius: 999px;
  padding: 0.45rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  animation: heroFadeIn 0.8s ease-out 0.2s both;
}

/* ─── Section Badge Pill ─── */
.section-badge {
  display: inline-block;
  background: var(--lana-lightest);
  border: 2px solid var(--card-border);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

/* ─── Hero Trust Strip ─── */
.hero-trust-strip {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-trust-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ─── Mini Card Badges ─── */
.hmc-badge {
  margin-right: auto;
  margin-left: 0;
  background: var(--lana-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
}

.hmc-4 {
  animation: slideInCard 0.7s ease-out 1.1s both;
}

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 2px solid var(--card-border);
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--lana-blue);
  border-radius: 4px;
  margin-top: 6px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ─── Gradient Orbs ─── */
.gradient-orb {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.orb-1::before {
  width: 400px;
  height: 400px;
  background: var(--lana-medium);
  top: -200px;
  left: 10%;
}

.orb-2::before {
  width: 350px;
  height: 350px;
  background: var(--lana-blue);
  top: -175px;
  right: 15%;
}

.orb-3::before {
  width: 500px;
  height: 500px;
  background: var(--lana-light);
  top: -250px;
  left: 30%;
}

[data-theme="dark"] .gradient-orb::before {
  opacity: 0.08;
}

/* ─── Additional floating emojis ─── */
.hero-float-6 {
  top: 40%;
  right: 5%;
  animation: floatAround 12s ease-in-out infinite 1.5s;
}

.hero-float-7 {
  bottom: 15%;
  left: 40%;
  animation: floatAround 9s ease-in-out infinite 2.5s;
}

/* ─── Testimonials Section ─── */
.testimonials-section {
  background: var(--lana-lightest);
}

[data-theme="dark"] .testimonials-section {
  background: rgba(30, 58, 30, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 3px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  text-align: right;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--lana-light);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(46, 204, 113, 0.12);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lana-blue), var(--lana-medium));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-grid .scroll-reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.testimonials-grid .scroll-reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.testimonials-grid .scroll-reveal:nth-child(3) {
  transition-delay: 0.4s;
}

/* ─── CTA Banner ─── */
.cta-banner {
  width: 100%;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--lana-blue);
  border: 4px solid var(--card-border);
  box-shadow: 10px 10px 0px var(--card-shadow);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 200px at 10% 30%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(200px 200px at 90% 70%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-inner .hero-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--lana-blue);
  border-color: #fff;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
}

.cta-inner .hero-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}

/* ─── Trusted By Section ─── */
.trusted-section {
  width: 100%;
  padding: 3rem 1rem;
  background: var(--lana-bg);
  border-bottom: 2px dashed var(--card-border);
  text-align: center;
}

.trusted-title {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  background: var(--lana-lightest);
  border: 3px solid var(--card-border);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  box-shadow: 4px 4px 0px var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: default;
}

.trusted-logo:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px var(--card-shadow);
  background: #fff;
}

/* ─── FAQ Section ─── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 4px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 6px 6px 0px var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

.faq-icon {
  color: var(--lana-medium);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

/* ─── Newsletter Section (Above Footer Top) ─── */
.footer-newsletter {
  background: var(--lana-lightest);
  border: 4px solid var(--card-border);
  border-radius: 22px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 8px 8px 0px var(--card-shadow);
}

.newsletter-content {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.newsletter-input {
  width: 300px;
  max-width: 100%;
  margin-bottom: 0;
}

.newsletter-btn {
  margin-top: 0 !important;
  white-space: nowrap;
}

/* ─── Enhanced Footer (Multi-Column) ─── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  text-align: right;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badges span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--lana-lightest);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ─── Enhanced Navbar — Active Link Indicator ─── */
.navbar-links a.active-link {
  color: var(--text-primary);
  background: var(--lana-lightest);
  position: relative;
}

.navbar-links a.active-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--lana-blue);
  border-radius: 3px;
}

/* ─── Extended stagger delays for 6 feature cards ─── */
/* ─── Extended stagger delays for 6 feature cards ─── */
/* ─── Extended stagger delays for 6 feature cards ─── */
.features-grid .scroll-reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.features-grid .scroll-reveal:nth-child(5) {
  transition-delay: 0.35s;
}

.features-grid .scroll-reveal:nth-child(6) {
  transition-delay: 0.5s;
}