/* ==========================================================================
   LENZURAART — CLEAN, MODERN ARTIVIVE-STYLE LANDING PAGE STYLES
   ========================================================================== */

:root {
  /* Clean Minimalist Light Palette */
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray-light: #f1f5f9;
  --bg-card: #ffffff;

  /* Artivive-Style Classic Primary Blue */
  --primary-blue: #5b9bd5;
  --primary-blue-hover: #4682b4;
  --primary-dark: #1e293b;
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border-light: #e5e7eb;
  --border-card: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 16px 32px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --------------------------------------------------------------------------
   0. TOP NOTIFICATION BANNER
   -------------------------------------------------------------------------- */
.top-announcement-bar {
  background: linear-gradient(90deg, #fbcfe8 0%, #e0e7ff 50%, #bae6fd 100%);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  position: relative;
}

.top-announcement-bar strong {
  font-weight: 800;
}

.btn-banner-link {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.15s ease;
}

.btn-banner-link:hover {
  background: #ffffff;
}

.btn-close-announcement {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   1. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-heading);
}

.logo-boxed-icon {
  border: 2px solid #1e293b;
  padding: 2px 6px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #1e293b;
}

.brand-name-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links-menu a {
  text-decoration: none;
  color: var(--text-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.nav-links-menu a:hover {
  color: var(--primary-blue);
}

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

.btn-header-search {
  background: none;
  border: none;
  font-size: 15px;
  color: var(--text-heading);
  cursor: pointer;
  padding: 6px;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: var(--border-light);
}

.btn-header-login {
  padding: 8px 18px;
  border: 1.5px solid var(--text-heading);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.btn-header-login:hover {
  background: #f1f5f9;
}

.btn-header-signup {
  padding: 8px 20px;
  background: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.btn-header-signup:hover {
  background: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-clean-section {
  padding: 70px 0 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 900px) {
  .hero-grid-2col {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-left-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.hero-left-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero-left-content p strong {
  color: var(--text-heading);
  font-weight: 700;
}

.btn-cta-blue {
  display: inline-block;
  padding: 14px 34px;
  background: var(--primary-blue);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(91, 155, 213, 0.35);
}

.btn-cta-blue:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 155, 213, 0.45);
}

.hero-right-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-frame {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.hero-mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   3. 3-STEP PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 850px) {
  .process-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.process-item-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  color: #1e293b;
}

.process-item-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.55;
}

.process-item-text strong {
  color: var(--text-heading);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   4. "GET INSPIRED" (USE CASES CARDS)
   -------------------------------------------------------------------------- */
.get-inspired-section {
  padding: 90px 0;
  text-align: center;
}

.section-clean-heading {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 40px;
}

.usecases-scroll-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .usecases-scroll-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .usecases-scroll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.usecase-card-tile {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-light);
}

.usecase-card-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.usecase-card-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f1f5f9;
}

.usecase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usecase-card-title {
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. "TRY LENZURAART NOW!" SCANNER WIDGET
   -------------------------------------------------------------------------- */
.try-scanner-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.scanner-widget-card {
  background: #f8fafc;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 850px) {
  .scanner-widget-card {
    grid-template-columns: 1fr;
  }
}

.scanner-qr-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.scanner-qr-img-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px auto;
}

.scanner-qr-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scanner-qr-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.scanner-target-preview-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  height: 320px;
  background: #0f172a;
}

.scanner-target-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   6. SUCCESS STORIES SECTION
   -------------------------------------------------------------------------- */
.stories-section {
  padding: 90px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.story-card-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.story-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.story-card-img {
  height: 160px;
  background: #f1f5f9;
  overflow: hidden;
}

.story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.story-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. PRICING SECTION (MATCHING ARTIVIVE PRICING CARDS)
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--primary-blue);
  transition: .3s;
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider-round {
  background-color: #1e293b;
}

input:checked + .slider-round:before {
  transform: translateX(22px);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card-item {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card-item.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 12px 30px -4px rgba(91, 155, 213, 0.25);
}

.featured-pill {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.pricing-card-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 30px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 12px;
}

.pricing-features-list li i {
  color: var(--primary-blue);
  font-size: 14px;
}

.btn-pricing-action {
  width: 100%;
  padding: 12px;
  background: #f1f5f9;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
  display: block;
}

.pricing-card-item.featured .btn-pricing-action {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.btn-pricing-action:hover {
  background: var(--text-heading);
  color: #ffffff;
  border-color: var(--text-heading);
}

/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.site-footer-clean {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
  font-size: 13.5px;
}

.footer-grid-clean {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 850px) {
  .footer-grid-clean {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col-clean h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col-clean ul {
  list-style: none;
}

.footer-col-clean ul li {
  margin-bottom: 10px;
}

.footer-col-clean ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col-clean ul li a:hover {
  color: var(--primary-blue);
}

.footer-copyright-row {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}
