@charset "UTF-8";
/* app/static/scss/landing_page.scss */
/* --- CSS Variables --- */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
  --color-orange-primary: #F97316;
  --color-orange-hover: #EA580C;
  --color-orange-light: #FFF7ED;
  --color-text-light: #FFFFFF;
  --color-text-dark: #111827;
  --color-text-secondary: #6B7280;
  --color-border: #E5E7EB;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* --- Base & Body Styling --- */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-body);
  color: var(--color-text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.hero-video-wrapper {
  position: relative;
  /* Use dvh for mobile browsers to handle URL bars better */
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #111;
}

#bgvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 25, 0.6);
  z-index: 2;
}

/* Make sure the content is on top of the video and overlay */
.navbar, .hero-section {
  position: relative;
  z-index: 3;
}

/* --- Navbar Styling --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity var(--transition-fast);
}

.nav-link:hover {
  opacity: 0.8;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  border: none;
  background-color: var(--color-orange-primary);
  color: var(--color-text-light);
  text-decoration: none;
}

.button-primary:hover {
  background-color: var(--color-orange-hover);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  border: 1px solid var(--color-orange-primary);
  background-color: transparent;
  color: var(--color-orange-primary);
  text-decoration: none;
}

.button-secondary:hover {
  background-color: var(--color-orange-light);
}

.nav-right .login-link {
  font-weight: 600;
}

/* --- Hero Section Styling --- */
.hero-section {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 24px;
}

.hero-content {
  max-width: 720px;
  animation: fadeIn 1.5s ease-out;
}

/* NEW: Hero proof lines */
.hero-proof, .hero-trust {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-button {
  font-size: 1rem;
  padding: 14px 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Content Section Styling --- */
.content-section {
  padding: 80px 24px;
  background-color: #F9FAFB;
  color: var(--color-text-dark);
}

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

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto 48px auto;
}

/* --- Features Grid Styling --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: left;
}

.feature-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- FAQs Section Styling --- */
.faq-section {
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-list dt {
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 8px;
}

.faq-list dd {
  margin-left: 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Footer Styling --- */
.footer {
  padding: 32px 24px;
  text-align: center;
  background-color: #F9FAFB;
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer a {
  color: #6B7280;
  text-decoration: none;
}

/* --- Scroll Animation --- */
.content-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- "Our Method" Section Styling --- */
.method-section {
  background-color: #FFFFFF;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: center;
  margin-top: 60px;
}

.method-step .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-orange-light);
  color: var(--color-orange-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 2px solid var(--color-orange-primary);
  margin-left: auto;
  margin-right: auto;
}

.method-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.method-step p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Testimonials Section Styling --- */
.testimonials-section {
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background-color: #F9FAFB;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: left;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-weight: 700;
  color: #E5E7EB;
  line-height: 1;
  z-index: 1;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin: 0;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.testimonial-card cite {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-style: normal;
  position: relative;
  z-index: 2;
}

.cite-name {
  display: block;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cite-title {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* --- PRICING SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 48px auto 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pricing-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--color-orange-primary);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  font-weight: 700;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 16px 0;
  color: var(--color-text-dark);
}

.price-tag span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  flex-grow: 1;
  color: var(--color-text-secondary);
}

.pricing-features li {
  margin-bottom: 12px;
}

.pricing-button {
  width: 100%;
  text-align: center;
}

/* --- MODAL STYLES --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-dialog {
  background-color: #fff;
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 500px;
  padding: 32px;
}

.modal-dialog h3 {
  margin-top: 0;
  font-weight: 800;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-sizing: border-box;
}

/* --- Language Switcher --- */
.language-switcher-landing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher-landing a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding: 4px;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.language-switcher-landing a.active,
.language-switcher-landing a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.language-switcher-landing .lang-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Status Messages */
.status-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  animation: slideDownFade 0.3s ease-out forwards;
}

.status-message.error {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.status-message.success {
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.status-message.info {
  background-color: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- MOBILE OPTIMIZATION (THE "V3 LOGIC" FIXES) --- */
/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Hidden by default on desktop */
  border-top: 1px solid var(--color-border);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Mobile view: 900px and below */
@media (max-width: 900px) {
  /* 1. Navbar Cleanup */
  .mobile-hidden {
    display: none !important;
  }
  .navbar {
    /* Align Logo Left, Login/Lang Right */
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 25, 0.95), rgba(10, 10, 25, 0.7));
    padding: 16px 20px;
  }
  .logo {
    position: static;
    transform: none;
    font-size: 1.3rem;
  }
  .nav-right {
    gap: 12px;
  }
  .nav-right .nav-link {
    font-size: 0.9rem;
  }
  /* 2. Hero Adjustments */
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero-content p {
    font-size: 1rem;
    padding: 0 20px;
  }
  /* 3. Hide Video to save data/battery */
  #bgvideo {
    display: none;
  }
  .hero-video-wrapper {
    background-image: url("../img/hero-poster.png");
    background-size: cover;
    background-position: center;
  }
  /* 4. Layout Stacking */
  .content-section {
    padding: 60px 20px;
  }
  .content-section h2 {
    font-size: 1.75rem;
  }
  .features-grid, .method-steps, .testimonials-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  /* 5. Show Sticky CTA */
  .mobile-sticky-cta {
    display: block;
  }
  /* Add padding to footer so it's not covered by sticky CTA */
  .footer {
    padding-bottom: 100px;
  }
}

/*# sourceMappingURL=landing_page.css.map */
