/* ==========================================================================
   ORCHA HERO / HOME SCREEN STYLES - PIXEL-PERFECT REPLICA
   ========================================================================== */

.landing-page-wrap {
  min-height: 100vh;
  width: 100%;
  background-color: #06090F;
  background-image: 
    linear-gradient(to right, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.8) 45%, rgba(6, 9, 15, 0.45) 100%),
    url('../assets/santorini_sunset_clean.jpg');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #F8FAFC;
  font-family: var(--font-sans, 'Inter', sans-serif);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Ambient glow */
.landing-ambient-glow {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Header */
.landing-header {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.landing-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.landing-brand-logo {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #38BDF8;
  display: flex;
  align-items: center;
}

.landing-brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #94A3B8;
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
  margin-top: 4px;
}

.landing-header-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #CBD5E1;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Main Hero Grid */
.landing-hero-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px 16px 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 10;
  flex: 1;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .landing-hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 16px 20px 24px 20px;
  }
  .landing-header {
    padding: 20px 20px 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Left Column */
.landing-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-hero-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.16;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.landing-hero-highlight {
  color: #38BDF8;
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  color: #94A3B8;
  margin: 0;
  max-width: 520px;
}

/* Onboarding Card */
.landing-card {
  background: rgba(11, 19, 34, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(56, 189, 248, 0.22);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  box-sizing: border-box;
}

.landing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0284C7;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.5);
  flex-shrink: 0;
}

.landing-step-text-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.landing-step-text-wrap p {
  font-size: 0.84rem;
  color: #94A3B8;
  margin: 0;
}

.landing-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
  letter-spacing: 0.3px;
}

/* Radio Options Grid */
.landing-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landing-type-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.landing-type-opt:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(56, 189, 248, 0.4);
}

.landing-type-opt.active {
  background: rgba(2, 132, 199, 0.16);
  border-color: #0284C7;
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.25);
}

.landing-radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.landing-type-opt.active .landing-radio-circle {
  border-color: #38BDF8;
}

.landing-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38BDF8;
  display: none;
}

.landing-type-opt.active .landing-radio-dot {
  display: block;
}

.landing-type-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.landing-type-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.landing-type-desc {
  font-size: 0.68rem;
  color: #94A3B8;
  margin-top: 2px;
}

/* Input Field */
.landing-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.landing-input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  opacity: 0.7;
  pointer-events: none;
}

.landing-text-input {
  width: 100%;
  background: rgba(10, 16, 29, 0.8);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  color: #F8FAFC;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.landing-text-input:focus {
  border-color: #38BDF8;
  background: rgba(10, 16, 29, 0.95);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.landing-text-input::placeholder {
  color: #64748B;
}

/* CTA Button */
.landing-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
  transition: all 0.25s ease;
}

.landing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.6);
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
}

.landing-cta-btn:active {
  transform: translateY(0);
}

/* Direct Login Link */
.landing-login-note {
  text-align: center;
  font-size: 0.82rem;
  color: #94A3B8;
  margin: 0;
}

.landing-login-link {
  color: #38BDF8;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.15s;
  cursor: pointer;
}

.landing-login-link:hover {
  color: #7DD3FC;
  text-decoration: underline;
}

/* Right Column (Video Showcase) */
.landing-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Laptop / Screen Mockup Frame */
.landing-screen-frame {
  width: 100%;
  background: #0F172A;
  border: 10px solid #1E293B;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(14, 165, 233, 0.15);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.2;
  box-sizing: border-box;
}

.landing-screen-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.landing-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.landing-video-preview {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.landing-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  z-index: 5;
}

.landing-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
  margin-left: 3px;
}

.landing-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(2, 132, 199, 0.85);
  border-color: #38BDF8;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.8);
}

.landing-video-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
  cursor: pointer;
  margin-top: -12px;
  transition: color 0.15s;
}

.landing-video-caption:hover {
  color: #38BDF8;
}

/* Feature Pillars Trio */
.landing-features-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .landing-features-trio {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.landing-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.landing-feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.25);
}

.landing-feature-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.landing-feature-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
}

.landing-feature-desc {
  font-size: 0.74rem;
  color: #94A3B8;
  line-height: 1.3;
  margin: 0;
}

/* Bottom "Πώς λειτουργεί;" Bar */
.landing-footer-banner {
  width: 100%;
  max-width: 1280px;
  margin: 8px auto 20px auto;
  padding: 16px 28px;
  background: rgba(11, 18, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .landing-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin: 16px 20px 36px 20px;
  }
}

.landing-how-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  white-space: nowrap;
}

.landing-how-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.landing-how-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-how-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.25);
  border: 1px solid #38BDF8;
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-how-label {
  font-size: 0.82rem;
  color: #CBD5E1;
  white-space: nowrap;
}

.landing-how-sep {
  color: #475569;
  font-size: 1.1rem;
  font-weight: bold;
}

.landing-ready-badge {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #38BDF8;
  transform: rotate(-3deg);
  white-space: nowrap;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}
