/* app/static/scss/landing_page_v3.scss */
/* --- 1. Imports & Variables --- */
:root {
  /* --- Colors --- */
  --color-bg-sidebar: #FFFFFF;
  --color-bg-main: #F9FAFB;
  --color-bg-card: #FFFFFF;
  --color-bg-page: #F5F5F7;
  --color-text-primary: #111827;
  --color-text-secondary: #6B7280;
  --color-text-light: #FFFFFF;
  --color-text-dark: #111827;
  /* Branding */
  --color-accent-orange: #F97316;
  --color-accent-orange-hover: #EA580C;
  --color-accent-orange-light: #FFF7ED;
  /* Functional Colors */
  --color-border: #E5E7EB;
  --color-border-light: #D2D2D7;
  --color-icon: #9CA3AF;
  --color-error: #DC2626;
  --color-success: #16A34A;
  --color-warning: #ffc107;
  --color-warning-light: #fffbe6;
  --color-warning-dark: #b28400;
  /* --- Typography --- */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* --- Sizing & Spacing --- */
  --sidebar-width: 256px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  /* Legacy Spacing Units */
  --spacing-unit-half: 16px;
  --spacing-unit: 32px;
  --spacing-unit-x2: 64px;
  /* --- Borders & Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-card: 18px;
  --radius-pill: 999px;
  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.04);
  /* --- Transitions --- */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Flexbox Helpers */
/* Text Truncation (Ellipsis) */
/* Scrollbar Styling (for Sidebar/Content areas) */
/* Responsive Breakpoints */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
  /* REBRANDING: New Display Font */
  --font-display: 'Bungee', system-ui, cursive;
  /* Theme Colors (Kitchen Vibe: Deep Blue, Crisp White, Hot Orange/Yellow) */
  --color-blue-deep: #0B1F51;
  --color-blue-bright: #1D4ED8;
  --color-yellow-primary: #FACC15;
  --color-red-accent: #DC2626;
  --color-orange-primary: #F97316;
  --color-orange-hover: #EA580C;
  --color-orange-light: #FFF7ED;
  --color-text-light: #F9FAFB;
  --color-text-dark: #111827;
  --color-text-secondary: #6B7280;
  --color-border: #E5E7EB;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.25);
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. Base & Layout --- */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-body);
  color: var(--color-text-light);
  background-color: var(--color-blue-deep);
  scroll-behavior: smooth;
}

/* --- 3. Hero Video Wrapper --- */
.hero-video-wrapper {
  position: relative;
  height: 100vh; /* Full viewport height */
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--color-blue-deep);
}

#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;
  /* MOBILE: Hide video to save data/battery, show poster image instead */
}
@media (max-width: 768px) {
  #bgvideo {
    display: none;
  }
}

/* Fallback background for mobile (when video is hidden) */
@media (max-width: 768px) {
  .hero-video-wrapper {
    background-image: url("../img/hero-poster.png"); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient overlay to make text pop */
  background: linear-gradient(135deg, rgba(11, 31, 81, 0.9), rgba(29, 78, 216, 0.75), rgba(249, 115, 22, 0.4));
  z-index: 2;
}

/* --- 4. Navbar --- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(to bottom, rgba(11, 31, 81, 0.95), rgba(11, 31, 81, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
    background: rgba(11, 31, 81, 0.95); /* Solid bg on mobile */
  }
}

/* Helper to hide elements on mobile */
@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

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

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}
.nav-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-yellow-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 0 var(--color-red-accent);
  /* Center absolute on desktop */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Reset positioning on mobile */
}
@media (max-width: 768px) {
  .logo {
    position: static;
    transform: none;
    font-size: 1.2rem;
  }
}

/* --- 5. Hero Content --- */
.hero-section {
  position: relative;
  z-index: 3;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.5rem; /* Large on desktop */
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: var(--color-yellow-primary);
  text-shadow: 3px 3px 0 var(--color-red-accent), 0 0 30px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem; /* Readable on mobile */
    line-height: 1.2;
  }
}
.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto 32px auto;
  color: #E5E7EB;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }
}

/* Primary Button (Gradient) */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-blue-deep);
  background-image: linear-gradient(135deg, var(--color-yellow-primary), var(--color-orange-primary));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.6);
  background-image: linear-gradient(135deg, #FDE68A, var(--color-orange-hover));
}

/* Nav Button specific sizing */
.nav-button {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Trust Signals (New) */
.trust-signals {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.trust-signals span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .trust-signals {
    gap: 10px;
    font-size: 0.8rem;
  }
}

/* --- 6. Content Sections (Shared) --- */
.content-section {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  background-color: #F9FAFB; /* Light grey */
  color: var(--color-text-dark);
}
@media (max-width: 768px) {
  .content-section {
    padding: 60px 20px;
  }
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-blue-deep);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .content-section h2 {
    font-size: 1.8rem;
  }
}
.content-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 48px auto;
}

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

/* --- 7. Features Grid --- */
.features-grid {
  display: grid;
  /* Responsive Grid Logic */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    gap: 24px;
  }
}

.feature-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-blue-bright);
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-blue-deep);
}
.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- 8. Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pricing-card.featured {
  border: 2px solid var(--color-orange-primary);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none; /* Reset scale on mobile */
  }
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-blue-deep);
  margin-bottom: 10px;
}
.pricing-card .price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}
.pricing-card .price-tag span {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}
.pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  flex-grow: 1;
  text-align: left;
  width: 100%;
}
.pricing-card .pricing-features li {
  padding: 8px 0;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card .button-secondary {
  background: transparent;
  border: 2px solid var(--color-blue-deep);
  color: var(--color-blue-deep);
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  width: 100%;
}
.pricing-card .button-secondary:hover {
  background: var(--color-blue-deep);
  color: white;
}

/* --- 9. Method Section (Steps) --- */
.method-section {
  background-color: #FFFFFF;
}

.method-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .method-steps {
    flex-direction: column;
    align-items: center;
  }
}

.method-step {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}
.method-step .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-yellow-primary);
  color: var(--color-blue-deep);
  border: 2px solid var(--color-red-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.method-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.method-step p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- 10. Testimonials --- */
.testimonials-section {
  background-color: #F3F4F6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-primary);
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.testimonial-card cite {
  display: block;
  font-style: normal;
}
.testimonial-card cite .cite-name {
  font-weight: 700;
  color: var(--color-blue-deep);
  display: block;
}
.testimonial-card cite .cite-title {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* --- 11. FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.faq-item dt {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-blue-deep);
  cursor: pointer;
}
.faq-item dd {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- 12. Footer --- */
.footer {
  background-color: var(--color-blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid var(--color-yellow-primary);
  font-size: 0.9rem;
  /* Spacing for Sticky CTA on mobile */
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer a {
  color: var(--color-yellow-primary);
  text-decoration: none;
  margin: 0 10px;
}
.footer a:hover {
  text-decoration: underline;
}

/* --- 13. Mobile Sticky CTA (New) --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  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;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block; /* Visible only on mobile */
  }
}
.mobile-sticky-cta .button-primary.full-width {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* --- 14. Language Switcher --- */
.language-switcher-landing {
  display: flex;
  align-items: center;
  gap: 6px;
}
.language-switcher-landing a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.language-switcher-landing a.active {
  color: white;
  text-decoration: underline;
}
.language-switcher-landing .lang-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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