/* FormUp Landing Page Styles */

.landing-container {
  min-h-screen: 100vh;
  background-color: var(--formup-bg, #0D0D0D);
  color: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

/* 3.1. Üst Bar (Header) */
.landing-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-link:hover {
  color: #FFFFFF;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FF3B30 0%, #8B1E2B 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* 3.2. Hero Bölümü */
.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Energetic Hero Pill Badge */
.hero-energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF453A;
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(255, 59, 48, 0.15);
  letter-spacing: 0.02em;
}

.energy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 10px #FF3B30;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.landing-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 540px;
}

.landing-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}





/* Feature SVG Icon Container */
.feature-svg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.22);
  color: #FF3B30;
  transition: all 0.25s ease;
}

.feature-card:hover .feature-svg-icon {
  background: rgba(255, 59, 48, 0.2);
  border-color: rgba(255, 59, 48, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.25);
}

/* Telefon Mockup Grubu (Hero Visual) */
.phone-mockup-group {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 500px;
  margin: 0 auto;
}

.phone-frame {
  position: absolute;
  width: 240px;
  height: 480px;
  background: #0a0a0a;
  border-radius: 36px;
  border: 6px solid #1a1a1a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  user-select: none;
}

.phone-front {
  top: 0;
  left: 0;
  z-index: 2;
}

.phone-back {
  top: 20px;
  left: 160px;
  z-index: 1;
  opacity: 0.85;
  transform: scale(0.95);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  padding: 30px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

/* Ön Telefon: Dashboard Content */
.dashboard-screen-mock .mock-header {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.mock-calorie-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(#FF3B30 72%, rgba(255, 255, 255, 0.1) 0);
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.2);
}

.mock-calorie-ring::before {
  content: '';
  position: absolute;
  inset: 7px;
  background: #141416;
  border-radius: 50%;
}

.mock-calorie-number {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.mock-calorie-label {
  position: relative;
  z-index: 2;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.mock-macro-row {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.mock-macro-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-macro-label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.mock-macro-val {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

.mock-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.mock-section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 2px;
}

.mock-meal-list,
.mock-activity-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-meal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 10px;
}

.mock-meal-name {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.mock-meal-cal {
  color: #FF3B30;
  font-weight: 700;
}

.mock-activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 10px;
}

.mock-activity-name {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.mock-activity-cal {
  color: #10B981;
  font-weight: 700;
}

/* Arka Telefon: Kamera Content */
.camera-screen-mock {
  padding: 24px 0 0 0;
}

.mock-camera-viewfinder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 30px;
  gap: 16px;
}

.mock-food-photo-placeholder {
  position: relative;
  width: 85%;
  height: 55%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 59, 48, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
}

.mock-food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-scan-line {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF3B30, transparent);
  box-shadow: 0 0 8px #FF3B30;
  z-index: 2;
  animation: scan 2.5s ease-in-out infinite alternate;
}

@keyframes scan {
  0% { top: 15%; opacity: 0.4; }
  100% { top: 75%; opacity: 1; }
}

.mock-food-tag {
  position: relative;
  z-index: 3;
  font-size: 8px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 59, 48, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mock-camera-tabs .mock-tab {
  font-size: 10px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(220, 38, 38, 0.7);
  padding: 4px 10px;
  border-radius: 20px;
}

.mock-camera-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  background: transparent;
}

/* 3.3. Özellikler Bölümü */
.landing-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.landing-features h2,
.landing-how-it-works h2,
.landing-premium-teaser h2,
.landing-final-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 59, 48, 0.15);
  border-color: rgba(255, 59, 48, 0.35);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* 3.4. Nasıl Çalışır Bölümü */
.landing-how-it-works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.step {
  flex: 1;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s ease;
}

.step:hover {
  border-color: rgba(255, 59, 48, 0.25);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF3B30 0%, #8B1E2B 100%);
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.4);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* 3.5. Premium Teaser */
.landing-premium-teaser {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.pricing-column {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-column.highlighted {
  border: 2px solid #FF3B30;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.09) 0%, #141416 100%);
  box-shadow: 0 12px 40px rgba(255, 59, 48, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #FF3B30;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-column h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-column ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 32px;
  flex-grow: 1;
}

.pricing-column li {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 3.6. Alt CTA & Footer */
.landing-final-cta {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.08) 0%, transparent 100%);
  border: 1px solid rgba(255, 59, 48, 0.15);
  border-radius: 28px;
}

.landing-final-cta h2 {
  margin-bottom: 28px;
}

.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

/* 4. Responsive Rules */
@media (max-width: 992px) {
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 30px;
  }

  .hero-energy-badge {
    margin-left: auto;
    margin-right: auto;
  }

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

  .landing-hero-actions {
    justify-content: center;
  }

  .landing-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  /* Responsive Phone Mockups: Single phone on mobile */
  .phone-mockup-group {
    height: 410px;
    max-width: 240px;
  }

  .phone-frame {
    width: 210px;
    height: 420px;
  }

  .phone-back {
    display: none;
  }

  .phone-front {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
  }


  .steps-container {
    flex-direction: column;
  }

  .pricing-columns {
    grid-template-columns: 1fr;
  }

  .landing-header {
    padding: 16px 20px;
  }
}

@media (max-width: 600px) {
  .landing-features-grid {
    grid-template-columns: 1fr;
  }
}
