/* ============================================================================
   LUMIQ STUDIO — LANDING PAGE (Pre-Login Website)
   Brand: #0A0A0C, #9B1515, #F8F6F2, Outfit
   ============================================================================ */

/* ---- Landing wrapper ---- */
.landing {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(180deg, #0F0F13 0%, #0A0A0C 40%, #0E0E12 100%);
  overflow-y: auto;
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

/* ---- Reveal animation base ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- NAVBAR ---- */
.land-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,21,21,0.08);
  transition: all 0.3s ease;
}

.land-nav.scrolled {
  padding: 12px 48px;
  background: rgba(10,10,12,0.92);
  border-bottom-color: rgba(155,21,21,0.15);
}

.land-nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #F8F6F2;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.land-nav-logo .dot { color: #9B1515; }

.land-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.land-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(248,246,242,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.land-nav-link:hover {
  color: #F8F6F2;
}

.land-nav-cta {
  padding: 9px 22px;
  background: #9B1515;
  border: none;
  border-radius: 8px;
  color: #F8F6F2;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.land-nav-cta:hover {
  background: #9B1515;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(155,21,21,0.3);
}

/* ---- HERO ---- */
.land-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Hero background animation */
.land-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.land-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.land-hero-orb-1 {
  width: 600px;
  height: 600px;
  background: #9B1515;
  top: -200px;
  left: -100px;
  animation: heroOrb1 20s ease-in-out infinite;
}

.land-hero-orb-2 {
  width: 500px;
  height: 500px;
  background: #9B1515;
  bottom: -100px;
  right: -150px;
  animation: heroOrb2 25s ease-in-out infinite;
}

.land-hero-orb-3 {
  width: 300px;
  height: 300px;
  background: #5a0808;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroOrb3 15s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.15); }
}

@keyframes heroOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.12; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.22; }
}

/* Grid lines */
.land-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,21,21,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,21,21,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.land-hero-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(155,21,21,0.1);
  border: 1px solid rgba(155,21,21,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,246,242,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.land-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9B1515;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(155,21,21,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(155,21,21,0); }
}

.land-hero-h1 {
  position: relative;
  z-index: 2;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #F8F6F2;
  margin: 0 0 24px;
  max-width: 700px;
}

.land-hero-h1 em {
  font-style: normal;
  color: #9B1515;
}

.land-hero-sub {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 400;
  color: rgba(248,246,242,0.62);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 40px;
}

.land-hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.land-btn-primary {
  padding: 14px 32px;
  background: #9B1515;
  border: none;
  border-radius: 10px;
  color: #F8F6F2;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.land-btn-primary:hover {
  background: #9B1515;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(155,21,21,0.35);
}

.land-btn-primary .arrow {
  transition: transform 0.2s ease;
}

.land-btn-primary:hover .arrow {
  transform: translateX(4px);
}

.land-btn-secondary {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(248,246,242,0.12);
  border-radius: 10px;
  color: rgba(248,246,242,0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.land-btn-secondary:hover {
  border-color: rgba(248,246,242,0.45);
  color: #F8F6F2;
  transform: translateY(-1px);
}

/* Scroll indicator */
.land-scroll-hint {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248,246,242,0.42);
  font-size: 11px;
  letter-spacing: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.land-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(155,21,21,0.4), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- SERVICES / WHAT WE DO ---- */
.land-section {
  padding: 100px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.land-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: #C85050;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.land-section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #9B1515;
}

.land-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #F8F6F2;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
  line-height: 1.15;
}

.land-section-sub {
  font-size: 16px;
  color: rgba(248,246,242,0.6);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Service cards */
.land-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
}

.land-service-card {
  background: rgba(15,15,18,0.6);
  border: 1px solid rgba(248,246,242,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.land-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9B1515, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.land-service-card:hover {
  border-color: rgba(155,21,21,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.land-service-card:hover::before {
  opacity: 1;
}

.land-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(155,21,21,0.1);
  border: 1px solid rgba(155,21,21,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.land-service-title {
  font-size: 18px;
  font-weight: 600;
  color: #F8F6F2;
  margin-bottom: 10px;
}

.land-service-desc {
  font-size: 14px;
  color: rgba(248,246,242,0.58);
  line-height: 1.65;
}

.land-service-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.land-service-feat {
  font-size: 12px;
  color: rgba(248,246,242,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.land-service-feat::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9B1515;
  flex-shrink: 0;
}

/* ---- HOW IT WORKS ---- */
.land-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(248,246,242,0.04);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
}

.land-step {
  background: #0E0E12;
  padding: 48px 36px;
  position: relative;
  transition: all 0.3s ease;
}

.land-step:hover {
  background: rgba(15,15,18,0.8);
}

.land-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: rgba(155,21,21,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.land-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #F8F6F2;
  margin-bottom: 10px;
}

.land-step-desc {
  font-size: 14px;
  color: rgba(248,246,242,0.58);
  line-height: 1.65;
}

.land-step-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #9B1515;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8F6F2;
  font-size: 12px;
  z-index: 2;
}

/* ---- STATS BAR ---- */
.land-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 48px;
  border-top: 1px solid rgba(248,246,242,0.04);
  border-bottom: 1px solid rgba(248,246,242,0.04);
}

.land-stat-item {
  text-align: center;
}

.land-stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  color: #9B1515;
  line-height: 1;
  margin-bottom: 8px;
}

.land-stat-desc {
  font-size: 13px;
  color: rgba(248,246,242,0.62);
  letter-spacing: 0.3px;
}

.land-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(248,246,242,0.06);
}

/* ---- WHY LUMIQ GRID ---- */
.land-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(248,246,242,0.04);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.land-why-item {
  background: #0E0E12;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.land-why-item:nth-child(1) {
  background: linear-gradient(145deg, #0e0e12 0%, #1a0c1c 60%, #110a14 100%);
}
.land-why-item:nth-child(2) {
  background: linear-gradient(145deg, #0e0e12 0%, #1a0c0c 50%, #2a0f0f 100%);
}
.land-why-item:nth-child(3) {
  background: linear-gradient(145deg, #0c0e18 0%, #0e1220 60%, #1a0c0c 100%);
}
.land-why-item:nth-child(4) {
  background: linear-gradient(145deg, #0e0e12 0%, #18100c 50%, #1a1008 100%);
}

.land-why-item:hover {
  box-shadow: inset 0 0 40px rgba(155,21,21,0.08);
}

.land-why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: rgba(155,21,21,0.65);
  margin-bottom: 12px;
}

.land-why-title {
  font-size: 20px;
  font-weight: 600;
  color: #F8F6F2;
  margin-bottom: 10px;
}

.land-why-desc {
  font-size: 14px;
  color: rgba(248,246,242,0.85);
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto;
}

/* ---- WHAT YOU GET GRID ---- */
.land-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  width: 100%;
}

.land-get-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(15,15,18,0.5);
  border: 1px solid rgba(248,246,242,0.04);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.land-get-item:hover {
  border-color: rgba(155,21,21,0.2);
  background: rgba(15,15,18,0.8);
}

.land-get-icon {
  color: #9B1515;
  font-size: 8px;
  flex-shrink: 0;
}

.land-get-label {
  font-size: 13px;
  color: rgba(248,246,242,0.62);
  font-weight: 400;
  text-align: left;
}

/* ---- QUOTE / BRAND SECTION ---- */
.land-quote-section {
  text-align: center;
  padding: 100px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.land-quote {
  font-size: 28px;
  font-weight: 300;
  color: rgba(248,246,242,0.7);
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin: 0 0 24px;
  font-style: italic;
}

.land-quote em {
  font-style: normal;
  color: #F8F6F2;
  font-weight: 500;
}

.land-quote-attr {
  font-size: 13px;
  color: rgba(248,246,242,0.48);
}

/* ---- CTA SECTION ---- */
.land-cta-section {
  text-align: center;
  padding: 80px 48px 60px;
  position: relative;
}

.land-cta-section .land-hero-orb {
  position: absolute;
}

.land-cta-h2 {
  font-size: 36px;
  font-weight: 700;
  color: #F8F6F2;
  letter-spacing: -0.2px;
  margin: 0 0 12px;
}

.land-cta-sub {
  font-size: 15px;
  color: rgba(248,246,242,0.6);
  margin: 0 0 32px;
}

/* ---- FOOTER ---- */
.land-footer {
  border-top: 1px solid rgba(248,246,242,0.04);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.land-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.land-footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: #F8F6F2;
}

.land-footer-brand .dot { color: #9B1515; }

.land-footer-copy {
  font-size: 11px;
  color: rgba(248,246,242,0.42);
}

.land-footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.land-footer-link {
  font-size: 12px;
  color: rgba(248,246,242,0.48);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.land-footer-link:hover {
  color: #F8F6F2;
}

/* ---- REVEAL VARIANTS (directional) ---- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- AUDIENCE GRID ---- */
.land-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  width: 100%;
}

.land-audience-card {
  background: rgba(15,15,18,0.5);
  border: 1px solid rgba(248,246,242,0.05);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.land-audience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9B1515, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.land-audience-card:hover {
  border-color: rgba(155,21,21,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.land-audience-card:hover::after {
  opacity: 1;
}

.land-audience-icon {
  width: 42px;
  height: 42px;
  background: rgba(155,21,21,0.08);
  border: 1px solid rgba(155,21,21,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.land-audience-title {
  font-size: 16px;
  font-weight: 600;
  color: #F8F6F2;
  margin-bottom: 8px;
}

.land-audience-desc {
  font-size: 13px;
  color: rgba(248,246,242,0.58);
  line-height: 1.65;
}

/* ---- SHOWCASE / BEFORE-AFTER ---- */
.land-showcase-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 800px;
  width: 100%;
}

.land-showcase-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.land-showcase-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(248,246,242,0.48);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.land-showcase-box {
  aspect-ratio: 4/3;
  background: rgba(15,15,18,0.6);
  border: 1px dashed rgba(248,246,242,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.land-showcase-box-result {
  border-style: solid;
  border-color: rgba(155,21,21,0.2);
  background: rgba(155,21,21,0.03);
}

.land-showcase-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.land-showcase-placeholder span {
  font-size: 12px;
  color: rgba(248,246,242,0.45);
}

.land-showcase-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.land-showcase-engine {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #9B1515;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- MAGNETIC BUTTON EFFECT ---- */
.land-btn-magnetic {
  position: relative;
  transition: all 0.25s ease;
}

/* ---- STAT COUNTER ANIMATION ---- */
.land-stat-number.counting {
  animation: countPulse 0.3s ease;
}

@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .land-nav { padding: 14px 24px; }
  .land-nav-links { gap: 16px; }
  .land-hero { padding: 100px 24px 60px; }
  .land-hero-h1 { font-size: 44px; }
  .land-hero-sub { font-size: 15px; }
  .land-section { padding: 60px 24px; }
  .land-services-grid { grid-template-columns: 1fr; gap: 16px; }
  .land-why-grid { grid-template-columns: 1fr; }
  .land-get-grid { grid-template-columns: 1fr 1fr; }
  .land-steps { grid-template-columns: 1fr; }
  .land-audience-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .land-showcase-flow { flex-direction: column; gap: 20px; }
  .land-showcase-arrow { transform: rotate(90deg); }
  .land-showcase-arrow svg { width: 24px; }
  .land-step-arrow { display: none; }
  .land-stats { flex-wrap: wrap; gap: 32px; padding: 40px 24px; }
  .land-stat-number { font-size: 32px; }
  .land-footer { flex-direction: column; gap: 20px; text-align: center; padding: 30px 24px; }
  .land-footer-right { flex-wrap: wrap; justify-content: center; }
  .land-hero-actions { flex-direction: column; width: 100%; }
  .land-btn-primary, .land-btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .land-nav-links .land-nav-link { display: none; }
  .land-hero-h1 { font-size: 34px; letter-spacing: -0.3px; }
  .land-section-h2 { font-size: 28px; }
  .land-quote { font-size: 20px; }
  .land-cta-h2 { font-size: 26px; }
  .land-get-grid { grid-template-columns: 1fr; }
  .land-audience-grid { grid-template-columns: 1fr; }
  .land-plans-grid { grid-template-columns: 1fr; }
  .land-contact-wrap { grid-template-columns: 1fr; }
  .land-form-2col { grid-template-columns: 1fr; }
}

/* ============================================================================
   PLANS & PRICING
   ============================================================================ */

.land-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.land-plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.land-plan-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.land-plan-featured {
  border-color: rgba(155,21,21,0.4);
  background: rgba(155,21,21,0.06);
}
.land-plan-featured:hover { border-color: rgba(155,21,21,0.6); }

.land-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #9B1515;
  color: #fff;
  font: 600 10px/1 'Outfit', sans-serif;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

.land-plan-tier {
  font: 600 14px/1 'Outfit', sans-serif;
  color: rgba(248,246,242,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.land-plan-price {
  font: 700 32px/1.1 'Outfit', sans-serif;
  color: #F8F6F2;
  margin-bottom: 4px;
}
.land-plan-mo {
  font-weight: 400;
  font-size: 14px;
  color: rgba(248,246,242,0.4);
}

.land-plan-credits {
  font: 600 16px/1.3 'Outfit', sans-serif;
  color: #D94444;
  margin-bottom: 2px;
}
.land-plan-est {
  font: 400 12px/1.3 'Outfit', sans-serif;
  color: rgba(248,246,242,0.35);
  margin-bottom: 20px;
}

.land-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.land-plan-features li {
  font: 400 13px/2 'Outfit', sans-serif;
  color: rgba(248,246,242,0.7);
  padding-left: 20px;
  position: relative;
}
.land-plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(155,21,21,0.5);
}

.land-plan-for {
  font: 400 12px/1.4 'Outfit', sans-serif;
  color: rgba(248,246,242,0.3);
  margin-bottom: 20px;
  font-style: italic;
}

.land-plan-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #F8F6F2;
  font: 500 13px/1 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.land-plan-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}
.land-plan-btn-pri {
  background: #9B1515;
  border-color: #9B1515;
}
.land-plan-btn-pri:hover {
  background: #B52020;
  border-color: #B52020;
}

.land-plans-note {
  text-align: center;
  font: 400 12px/1.6 'Outfit', sans-serif;
  color: rgba(248,246,242,0.3);
  max-width: 600px;
  margin: 32px auto 0;
}

@media (max-width: 768px) {
  .land-plans-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.land-contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 0 24px;
  align-items: start;
}

.land-contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
}

.land-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.land-form-group {
  margin-bottom: 14px;
}
.land-form-group label {
  display: block;
  font: 500 11px/1 'Outfit', sans-serif;
  color: rgba(248,246,242,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.land-form-group input,
.land-form-group select,
.land-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #F8F6F2;
  font: 400 13px/1.4 'Outfit', sans-serif;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.land-form-group input:focus,
.land-form-group select:focus,
.land-form-group textarea:focus {
  border-color: rgba(155,21,21,0.5);
}
.land-form-group input::placeholder,
.land-form-group textarea::placeholder {
  color: rgba(248,246,242,0.2);
}
.land-form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.land-form-group select option {
  background: #18181D;
  color: #F8F6F2;
}
.land-form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.land-contact-submit {
  width: 100%;
  margin-top: 4px;
}

.land-contact-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(52,217,196,0.06);
  border: 1px solid rgba(52,217,196,0.2);
  border-radius: 8px;
  font: 400 13px/1.5 'Outfit', sans-serif;
  color: #34D9C4;
}

.land-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.land-contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.land-contact-info-card:hover { border-color: rgba(255,255,255,0.12); }
.land-contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155,21,21,0.1);
  border-radius: 10px;
  color: #D94444;
  flex-shrink: 0;
}
.land-contact-info-label {
  font: 400 11px/1 'Outfit', sans-serif;
  color: rgba(248,246,242,0.35);
  margin-bottom: 3px;
}
.land-contact-info-val {
  font: 500 14px/1.3 'Outfit', sans-serif;
  color: #F8F6F2;
}

.land-contact-aside {
  margin-top: 8px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-align: center;
}
.land-contact-aside p {
  font: 400 12px/1.4 'Outfit', sans-serif;
  color: rgba(248,246,242,0.35);
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .land-contact-wrap { grid-template-columns: 1fr; }
  .land-form-2col { grid-template-columns: 1fr; }
}


/* ── PORTFOLIO GRID ─────────────────────────────────────── */

/* ── BULK GENERATION SECTION ─────────────────────────────── */

.land-bulk-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 48px auto 0;
}

.land-bulk-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.land-bulk-card:hover {
  border-color: rgba(217,68,68,0.3);
  transform: translateY(-4px);
}

.land-bulk-icon {
  color: #d94444;
  margin-bottom: 16px;
  opacity: 0.8;
}

.land-bulk-title {
  font: 600 15px/1.2 'Outfit', sans-serif;
  color: #f8f6f2;
  margin: 0 0 8px;
}

.land-bulk-desc {
  font: 400 13px/1.5 'Outfit', sans-serif;
  color: rgba(248,246,242,0.5);
  margin: 0;
}

.land-bulk-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  max-width: 800px;
}

.land-bulk-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.land-bulk-stat-num {
  font: 700 28px/1 'Outfit', sans-serif;
  color: #d94444;
}

.land-bulk-stat-label {
  font: 400 12px/1 'Outfit', sans-serif;
  color: rgba(248,246,242,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .land-bulk-features { grid-template-columns: repeat(2, 1fr); }
  .land-bulk-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .land-bulk-features { grid-template-columns: 1fr; }
  .land-bulk-stats { gap: 20px; }
  .land-bulk-stat-num { font-size: 22px; }
}


/* ── PORTFOLIO GRID (kept for reference, section removed) ── */

.land-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}

.land-portfolio-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s, border-color 0.3s;
}
.land-portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255,255,255,0.12);
}

.land-portfolio-tall {
  grid-row: span 2;
}
.land-portfolio-wide {
  grid-column: span 2;
}

.land-portfolio-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.land-portfolio-inner {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.land-portfolio-item:hover .land-portfolio-inner {
  opacity: 0.25;
}

.land-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.land-portfolio-cat {
  font: 500 10px/1 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d94444;
  margin-bottom: 2px;
}
.land-portfolio-title {
  font: 600 16px/1.2 'Outfit', sans-serif;
  color: #f8f6f2;
}
.land-portfolio-meta {
  font: 400 12px/1.3 'Outfit', sans-serif;
  color: rgba(248,246,242,0.5);
}

@media (max-width: 900px) {
  .land-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .land-portfolio-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .land-portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .land-portfolio-tall { grid-row: span 1; }
  .land-portfolio-wide { grid-column: span 1; }
}


/* ── FEEDBACK WIDGET ────────────────────────────────────── */

.lumiq-feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--accent, #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font: 500 12px/1 'Outfit', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.lumiq-feedback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.5);
}

.lumiq-feedback-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 998;
  width: 320px;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: none;
}
.lumiq-feedback-panel.open { display: block; }

.lumiq-feedback-panel h4 {
  font: 600 14px/1.2 'Outfit', sans-serif;
  color: #f8f6f2;
  margin: 0 0 12px;
}
.lumiq-feedback-panel textarea {
  width: 100%;
  min-height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f8f6f2;
  font: 400 13px/1.4 'Outfit', sans-serif;
  padding: 10px 12px;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}
.lumiq-feedback-panel textarea:focus {
  border-color: var(--accent, #c0392b);
}
.lumiq-feedback-panel select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f8f6f2;
  font: 400 12px/1 'Outfit', sans-serif;
  padding: 8px 12px;
  margin-bottom: 10px;
  outline: none;
  box-sizing: border-box;
}
.lumiq-feedback-send {
  width: 100%;
  padding: 10px;
  background: var(--accent, #c0392b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font: 500 13px/1 'Outfit', sans-serif;
  cursor: pointer;
  margin-top: 8px;
}
.lumiq-feedback-send:hover {
  opacity: 0.9;
}


/* ── PORTFOLIO SHOWCASE (card variant) ────────────────────── */

.land-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}

.land-portfolio-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: #111;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s;
}
.land-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(155,21,21,0.35);
}

.land-portfolio-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Per-card gradient placeholders */
.land-pf-1 { background: linear-gradient(145deg, #1a0a0a 0%, #3a0f0f 50%, #1A1A1A 100%); }
.land-pf-2 { background: linear-gradient(145deg, #0d0d1a 0%, #1a0a2a 50%, #2a1010 100%); }
.land-pf-3 { background: linear-gradient(145deg, #0a0f1a 0%, #9B1515 60%, #1A1A1A 100%); }
.land-pf-4 { background: linear-gradient(145deg, #111 0%, #2a1a0a 50%, #1a0a0a 100%); }
.land-pf-5 { background: linear-gradient(145deg, #0f0f0f 0%, #1a0808 40%, #3d1515 100%); }
.land-pf-6 { background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #2d0d0d 100%); }
.land-pf-7 { background: linear-gradient(145deg, #0d1a0d 0%, #1a0a0a 50%, #2a1515 100%); }
.land-pf-8 { background: linear-gradient(145deg, #1a1a0a 0%, #9B1515 70%, #0f0f0f 100%); }
.land-pf-9 { background: linear-gradient(145deg, #0a0d1a 0%, #1a0f2a 45%, #2a1515 100%); }

.land-portfolio-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.land-portfolio-card:hover .land-portfolio-img-inner {
  opacity: 0.8;
}

.land-portfolio-img-icon {
  color: rgba(248,246,242,0.6);
}

.land-portfolio-img-tag {
  font: 500 10px/1 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248,246,242,0.45);
}

.land-portfolio-info {
  padding: 14px 16px 16px;
  background: #131313;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.land-portfolio-label {
  font: 600 14px/1.2 'Outfit', sans-serif;
  color: #f8f6f2;
  margin-bottom: 3px;
}

.land-portfolio-type {
  font: 400 11px/1.3 'Outfit', sans-serif;
  color: rgba(248,246,242,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.land-portfolio-note {
  margin-top: 28px;
  text-align: center;
  font: 400 13px/1 'Outfit', sans-serif;
  color: rgba(248,246,242,0.3);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .land-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .land-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .land-portfolio-label { font-size: 12px; }
}


.hero-workflow-anim{position:relative;margin-top:3rem;width:100%;max-width:900px;min-height:120px;display:flex;align-items:center;justify-content:center}
.hwf-phase{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0;transition:opacity .6s ease;pointer-events:none}
.hwf-phase.hwf-active{opacity:1}
.hwf-label{font-family:'JetBrains Mono',monospace;font-size:.7rem;color:#C85050;letter-spacing:.2em;text-transform:uppercase;margin-bottom:1rem}
.hwf-chips{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.hwf-chip{display:inline-flex;align-items:center;gap:.4rem;padding:.5rem 1rem;font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;font-family:'JetBrains Mono',monospace}
.hwf-chip em{font-style:normal;color:#C85050;font-size:.6rem}
.hwf-stats{display:flex;gap:2.5rem;flex-wrap:wrap;justify-content:center}
.hwf-stat{text-align:center;font-family:'JetBrains Mono',monospace;font-size:.75rem;color:rgba(248,246,242,.6)}
.hwf-stat b{display:block;font-size:1.8rem;font-weight:800;color:#C85050;margin-bottom:.2rem}
@media(max-width:640px){.hwf-chip{padding:.4rem .7rem;font-size:.6rem}.hwf-stat b{font-size:1.3rem}}
