/**
 * Landing page styles — Kitchen Daily / UIKit3
 * v2.0.0
 */

:root {
  --kd-cream: #faf6f1;
  --kd-warm: #f5ede3;
  --kd-sand: #e8ddd0;
  --kd-olive: #6b7c4e;
  --kd-olive-dark: #4a5a34;
  --kd-terra: #c06a3a;
  --kd-terra-light: #d4885e;
  --kd-brown: #3d2c1e;
  --kd-brown-light: #5a4535;
  --kd-gold: #b8943e;
  --kd-text: #3d2c1e;
  --kd-muted: #8a7b6b;
  --kd-radius: 16px;
  --kd-radius-sm: 10px;
  --kd-shadow: 0 4px 24px rgba(61,44,30,.08);
  --kd-shadow-hover: 0 8px 40px rgba(61,44,30,.14);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--kd-cream);
  color: var(--kd-text);
  letter-spacing: .1px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Navbar */
.landing-navbar {
  background: rgba(250,246,241,.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--kd-sand);
}
.uk-sticky-fixed.landing-navbar {
  background: rgba(250,246,241,.96) !important;
  box-shadow: 0 4px 20px rgba(61,44,30,.08);
}
.landing-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--kd-brown) !important;
}
.landing-navbar .uk-navbar-nav > li > a {
  color: var(--kd-text) !important;
  text-transform: none;
  font-weight: 600;
  font-size: .9rem;
}
.landing-navbar .uk-navbar-nav > li > a:hover {
  color: var(--kd-olive) !important;
}

/* Offcanvas */
.landing-offcanvas-nav li a {
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Hero */
.landing-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--kd-brown);
  padding-top: 72px;
}
.landing-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80') center/cover no-repeat;
  opacity: .55;
}
.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45,40,35,.5) 0%, rgba(45,40,35,.25) 50%, rgba(45,40,35,.45) 100%);
}
.landing-hero-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.landing-hero__title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.landing-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin: 0 0 28px;
}
.landing-badges {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.landing-trust-badge {
  display: inline-block;
  margin: 4px 8px;
}
.landing-hero .uk-button-default {
  background: transparent;
  color: rgba(255,255,255,.95);
  border-color: rgba(255,255,255,.7);
}
.landing-hero .uk-button-default:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* Section titles */
.landing-section-title {
  font-weight: 800;
  margin: 0 0 10px;
}
.landing-section-subtitle {
  margin: 0;
  color: var(--kd-muted);
}

/* Cards */
.landing-card {
  border-radius: var(--kd-radius);
  box-shadow: var(--kd-shadow);
  border: 1px solid var(--kd-sand);
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.landing-card:hover {
  box-shadow: var(--kd-shadow-hover);
  transform: translateY(-3px);
}
.landing-rounded-img {
  border-radius: var(--kd-radius);
}

/* Stat */
.landing-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--kd-olive);
  line-height: 1;
}

/* Parallax stats */
.landing-parallax-section {
  background: url('https://images.unsplash.com/photo-1567521464027-f127ff144326?w=1600&q=80') center/cover fixed;
}
.landing-parallax-overlay {
  background: rgba(61,44,30,.7);
  padding: 80px 20px;
  color: #fff;
}
.landing-stat-card {
  padding: 20px;
}
.landing-stat-card .landing-stat {
  color: #fff;
  margin-bottom: 8px;
}

/* Steps */
.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.landing-step {
  text-align: center;
}
.landing-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--kd-radius);
  margin-bottom: 16px;
}
.landing-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kd-olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTA Banners */
.landing-cta-banner-overlay {
  background: rgba(45,40,35,.65);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.landing-cta-banner-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 12px;
}
.landing-cta-banner-overlay p {
  opacity: .85;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* CTA Buttons */
.landing-cta-primary.uk-button {
  background: var(--kd-olive);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  min-height: 44px;
  padding: 12px 28px;
  box-shadow: 0 8px 24px rgba(107,124,78,.25);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.landing-cta-primary.uk-button:hover {
  background: var(--kd-olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(107,124,78,.3);
}
.landing-cta-secondary.uk-button {
  border-radius: 999px;
  font-weight: 700;
  min-height: 44px;
  padding: 12px 28px;
}

/* Integration pills */
.landing-integration-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--kd-sand);
  color: var(--kd-text);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--kd-shadow);
}

/* Dark sections */
.landing-section-dark {
  background: linear-gradient(180deg, var(--kd-brown) 0%, var(--kd-brown-light) 100%);
}
.landing-section-dark .landing-section-title { color: #fff; }
.landing-section-dark .landing-dark-subtitle { color: rgba(255,255,255,.8); margin-top: 12px; }
.landing-section-dark .landing-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.landing-section-dark .landing-card:hover {
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.landing-section-dark .uk-text-muted { color: rgba(255,255,255,.7) !important; }
.landing-section-dark .uk-card-title { color: rgba(255,255,255,.95) !important; }

/* Reviews */
.landing-review-stars {
  color: var(--kd-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.landing-quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--kd-text);
}
.landing-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.landing-review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.landing-review-author strong { display: block; }
.landing-review-author span { font-size: .85rem; color: var(--kd-muted); }

/* Prices */
.landing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--kd-olive);
  margin-top: 8px;
}
.landing-price span { font-size: 1rem; font-weight: 600; opacity: .7; margin-left: 4px; }
.landing-checklist { margin: 16px 0 0; }
.landing-dim { opacity: .5; }
.landing-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(192,106,58,.15);
  border: 1px solid rgba(192,106,58,.3);
  color: var(--kd-terra);
  font-weight: 700;
  font-size: .85rem;
}
.landing-card-featured { border: 2px solid var(--kd-terra) !important; }
.landing-period-btn { border-radius: 999px; font-weight: 600; }
.landing-period-btn.active { background: var(--kd-olive); color: #fff; border-color: var(--kd-olive); }

/* FAQ */
.landing-faq .uk-accordion-title {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
  padding: 12px 0;
}

/* Contact icon */
.landing-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--kd-warm);
  color: var(--kd-olive);
  font-weight: 900;
}

/* Footer */
.landing-footer {
  border-top: 1px solid var(--kd-sand);
  color: var(--kd-muted);
  background: var(--kd-cream);
}
.landing-footer a { color: var(--kd-olive); }
.landing-footer a:hover { color: var(--kd-olive-dark); }

/* Floating */
.landing-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.landing-float a {
  border-radius: 999px;
  box-shadow: var(--kd-shadow);
  background: #fff;
  font-size: .85rem;
}

/* Mobile bar */
.landing-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(250,246,241,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--kd-sand);
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(61,44,30,.1);
}

/* Form inputs */
.landing-card input, .landing-card textarea {
  font-size: 16px;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 960px) {
  .landing-mobile-bar { display: flex; }
  .landing-float { bottom: 68px; right: 14px; }
  .landing-hero { min-height: 80vh; }
  .landing-parallax-section { background-attachment: scroll; }
  .landing-cta-banner { background-attachment: scroll !important; }
  .landing-parallax-overlay { padding: 60px 16px; }
  .landing-cta-banner-overlay { padding: 60px 16px; }
  .landing-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .landing-float a { font-size: .78rem; padding: 8px 14px; }
}

@media (max-width: 640px) {
  .landing-hero { padding-top: 60px; }
  .landing-hero__title { font-size: 1.8rem; }
  .landing-hero__subtitle { font-size: .95rem; }
  .landing-stat { font-size: 1.8rem; }
  .landing-price { font-size: 1.8rem; }
  .landing-section-title { font-size: 1.4rem; }
  .landing-steps { grid-template-columns: 1fr; }
  .landing-step img { height: 140px; }
  .landing-cta-row { flex-direction: column; }
  .landing-cta-row .uk-button { width: 100%; }
  .landing-badges { font-size: .82rem; }
  .landing-trust-badge { display: block; margin: 4px 0; }
  .landing-cta-banner-overlay h2 { font-size: 1.5rem; }
  .landing-review-author { flex-direction: column; text-align: center; }
  .landing-float { display: none; }
}

@media (max-width: 480px) {
  .landing-hero__title { font-size: 1.5rem; }
  .landing-stat { font-size: 1.5rem; }
  .landing-price { font-size: 1.6rem; }
  .landing-integration-pill { font-size: .82rem; padding: 8px 14px; }
}
