/* ==========================================================================
   LA VITTA PER TE / LVR - Wizytówka Firmy & Hub Współpracy B2B
   Design System: Luxury Polish Knitwear Manufacturer
   ========================================================================== */

:root {
  --lv-primary: #e01101;
  --lv-primary-hover: #c40f00;
  --lv-primary-gradient: linear-gradient(135deg, #e01101 0%, #b30900 100%);
  --lv-primary-light: #fff3f3;
  --lv-primary-border: #ffdada;

  --lv-gold: #c5a059;
  --lv-gold-hover: #b38e45;
  --lv-gold-light: #faf5eb;
  --lv-gold-gradient: linear-gradient(135deg, #d8b467 0%, #b88d3b 100%);
  --lv-gold-border: #eddcb5;

  --lv-dark: #121212;
  --lv-dark-surface: #1e1e1e;
  --lv-charcoal: #2a2a2a;
  --lv-gray-dark: #4a4a4a;
  --lv-gray: #6e6e6e;
  --lv-gray-light: #e5e5e5;
  --lv-gray-bg: #f8f8f8;
  --lv-white: #ffffff;

  --lv-font: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lv-font-serif: 'Playfair Display', Georgia, serif;

  --lv-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --lv-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --lv-shadow-lg: 0 16px 45px rgba(0, 0, 0, 0.12);
  --lv-shadow-card: 0 20px 50px rgba(0, 0, 0, 0.25);
  --lv-shadow-red: 0 8px 25px rgba(224, 17, 1, 0.3);
  --lv-shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.35);

  --lv-radius-sm: 6px;
  --lv-radius-md: 12px;
  --lv-radius-lg: 20px;
  --lv-radius-full: 9999px;
  --lv-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--lv-font);
  color: var(--lv-charcoal);
  background-color: var(--lv-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lv-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--lv-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.lv-topbar {
  background: var(--lv-dark);
  color: #c9c9c9;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lv-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lv-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lv-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224, 17, 1, 0.2);
  color: #ff847a;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.lv-topbar-phone,
.lv-topbar-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  transition: var(--lv-transition);
}

.lv-topbar-phone:hover,
.lv-topbar-mail:hover {
  color: var(--lv-gold);
}

.lv-topbar-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lv-topbar-socials a {
  color: #a0a0a0;
  font-size: 0.95rem;
}

.lv-topbar-socials a:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Main Navigation */
.lv-header {
  background: var(--lv-white);
  box-shadow: var(--lv-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--lv-gray-light);
}

.lv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.lv-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lv-brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.lv-brand-text {
  display: flex;
  flex-direction: column;
}

.lv-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--lv-dark);
  text-transform: uppercase;
}

.lv-brand-subtitle {
  font-size: 0.725rem;
  color: var(--lv-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.lv-nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lv-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

.lv-nav-links a:hover,
.lv-nav-links a.active {
  color: var(--lv-primary);
}

.lv-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lv-primary);
}

.lv-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--lv-radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--lv-transition);
  white-space: nowrap;
}

.lv-btn-primary {
  background: var(--lv-primary-gradient);
  color: var(--lv-white);
  box-shadow: var(--lv-shadow-red);
}

.lv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 17, 1, 0.4);
}

.lv-btn-gold {
  background: var(--lv-gold-gradient);
  color: var(--lv-white);
  box-shadow: var(--lv-shadow-gold);
}

.lv-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.45);
}

.lv-btn-outline {
  background: transparent;
  border-color: var(--lv-gray-light);
  color: var(--lv-dark);
}

.lv-btn-outline:hover {
  background: var(--lv-gray-bg);
  border-color: var(--lv-dark);
  transform: translateY(-2px);
}

.lv-btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--lv-white);
}

.lv-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--lv-white);
  transform: translateY(-2px);
}

.lv-btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

/* HERO SECTION & DIGITAL BUSINESS CARD */
.lv-hero-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
  padding: 70px 0 90px;
  overflow: hidden;
}

.lv-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e5e1d8 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

.lv-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content Column */
.lv-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lv-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lv-primary-light);
  color: var(--lv-primary);
  border: 1px solid var(--lv-primary-border);
  padding: 6px 14px;
  border-radius: var(--lv-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.lv-pill-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--lv-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(224, 17, 1, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(224, 17, 1, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(224, 17, 1, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(224, 17, 1, 0);
  }
}

.lv-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--lv-dark);
  line-height: 1.15;
}

.lv-hero-title span.highlight-gold {
  color: var(--lv-gold);
  background: linear-gradient(135deg, #caa050 0%, #a47d2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lv-hero-desc {
  font-size: 1.1rem;
  color: var(--lv-gray-dark);
  line-height: 1.65;
}

.lv-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #e7e4dc;
  border-bottom: 1px solid #e7e4dc;
  margin: 10px 0;
}

.lv-stat-item h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--lv-primary);
}

.lv-stat-item p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lv-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lv-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   VIRTUAL BUSINESS CARD (LUXURY EXECUTIVE DIGITAL CARD)
   ========================================================================== */
.lv-bizcard-wrapper {
  position: relative;
  perspective: 1000px;
}

.lv-bizcard {
  background: linear-gradient(145deg, #1a1a1a 0%, #111111 60%, #0d0d0d 100%);
  border-radius: var(--lv-radius-lg);
  padding: 34px;
  color: var(--lv-white);
  box-shadow: var(--lv-shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lv-bizcard:hover {
  transform: translateY(-4px) rotateX(1.5deg) rotateY(-1.5deg);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(197, 160, 89, 0.35);
}

/* Card Decorative Accents */
.lv-bizcard-gold-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.lv-bizcard-red-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(224, 17, 1, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.lv-bizcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.lv-bizcard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lv-bizcard-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
}

.lv-bizcard-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--lv-white);
  text-transform: uppercase;
}

.lv-bizcard-brand-tag {
  font-size: 0.7rem;
  color: var(--lv-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lv-bizcard-badge-vip {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--lv-gold);
  color: var(--lv-gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lv-bizcard-person {
  margin-bottom: 22px;
}

.lv-bizcard-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.lv-bizcard-role {
  color: var(--lv-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.lv-bizcard-company {
  font-size: 0.8125rem;
  color: #a0a0a0;
}

/* Contact Info Rows */
.lv-bizcard-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.lv-bizcard-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: #dddddd;
}

.lv-bizcard-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lv-gold);
  flex-shrink: 0;
  transition: var(--lv-transition);
}

.lv-bizcard-row:hover .lv-bizcard-icon {
  background: var(--lv-primary);
  color: #fff;
  transform: scale(1.08);
}

.lv-bizcard-row a:hover {
  color: var(--lv-gold-light);
  text-decoration: underline;
}

/* Card Actions Grid */
.lv-bizcard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.lv-bizcard-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--lv-transition);
}

.lv-bizcard-action-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.lv-bizcard-action-btn.btn-vcard {
  background: var(--lv-gold-gradient);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

.lv-bizcard-action-btn.btn-vcard:hover {
  box-shadow: var(--lv-shadow-gold);
}

.lv-bizcard-action-btn.btn-wa {
  background: #25d366;
  border-color: transparent;
  color: #fff;
}

.lv-bizcard-action-btn.btn-wa:hover {
  background: #1eb957;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.lv-bizcard-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #999;
}

.lv-copy-nip-btn {
  background: transparent;
  border: none;
  color: var(--lv-gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  transition: var(--lv-transition);
}

.lv-copy-nip-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--lv-gold-light);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.lv-section {
  padding: 85px 0;
  position: relative;
}

.lv-section-light {
  background-color: var(--lv-white);
}

.lv-section-gray {
  background-color: var(--lv-gray-bg);
}

.lv-section-dark {
  background-color: var(--lv-dark);
  color: var(--lv-white);
}

.lv-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.lv-section-sub {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lv-primary);
  margin-bottom: 8px;
  display: block;
}

.lv-section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--lv-dark);
  margin-bottom: 14px;
}

.lv-section-dark .lv-section-title {
  color: var(--lv-white);
}

.lv-section-desc {
  font-size: 1.05rem;
  color: var(--lv-gray);
  line-height: 1.6;
}

.lv-section-dark .lv-section-desc {
  color: #b0b0b0;
}

/* ==========================================================================
   PILLARS OF EXCELLENCE (CERTIFICATES & EXPERIENCE)
   ========================================================================== */
.lv-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lv-pillar-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-md);
  padding: 30px 24px;
  box-shadow: var(--lv-shadow-sm);
  border: 1px solid #ededed;
  transition: var(--lv-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.lv-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lv-gray-light);
  transition: var(--lv-transition);
}

.lv-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lv-shadow-md);
  border-color: #ddd;
}

.lv-pillar-card:hover::before {
  background: var(--lv-primary);
}

.lv-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--lv-primary-light);
  color: var(--lv-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.lv-pillar-card.gold-card .lv-pillar-icon {
  background: var(--lv-gold-light);
  color: var(--lv-gold);
}

.lv-pillar-card.gold-card:hover::before {
  background: var(--lv-gold);
}

.lv-pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lv-dark);
}

.lv-pillar-text {
  font-size: 0.9rem;
  color: var(--lv-gray);
  line-height: 1.55;
}

.lv-pillar-badge-img {
  margin-top: 16px;
  height: 48px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

/* ==========================================================================
   PRODUCTION CAPABILITIES & PRIVATE LABEL
   ========================================================================== */
.lv-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lv-caps-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.lv-cap-img-wrapper {
  position: relative;
  border-radius: var(--lv-radius-md);
  overflow: hidden;
  box-shadow: var(--lv-shadow-md);
}

.lv-cap-img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lv-cap-img-wrapper:hover img {
  transform: scale(1.05);
}

.lv-cap-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.lv-caps-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lv-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lv-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lv-primary-light);
  color: var(--lv-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.lv-feature-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lv-dark);
}

.lv-feature-info p {
  font-size: 0.9rem;
  color: var(--lv-gray);
  line-height: 1.5;
}

/* Private Label Badge Tags */
.lv-tags-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.lv-tag {
  background: var(--lv-white);
  border: 1px solid var(--lv-gray-light);
  color: var(--lv-charcoal);
  padding: 6px 14px;
  border-radius: var(--lv-radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--lv-transition);
}

.lv-tag i {
  color: var(--lv-primary);
  font-size: 0.8rem;
}

.lv-tag:hover {
  border-color: var(--lv-primary);
  color: var(--lv-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   5-STEP ROADMAP (HOW TO START B2B COOPERATION)
   ========================================================================== */
.lv-steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 30px;
}

.lv-steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--lv-primary) 0%, var(--lv-gold) 100%);
  z-index: 1;
}

.lv-step-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-md);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--lv-shadow-sm);
  border: 1px solid #ededed;
  position: relative;
  z-index: 2;
  transition: var(--lv-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lv-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--lv-shadow-md);
  border-color: var(--lv-gold);
}

.lv-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lv-white);
  border: 2px solid var(--lv-primary);
  color: var(--lv-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 18px;
  transition: var(--lv-transition);
}

.lv-step-card:hover .lv-step-number {
  background: var(--lv-primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--lv-shadow-red);
}

.lv-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lv-dark);
}

.lv-step-desc {
  font-size: 0.8125rem;
  color: var(--lv-gray);
  line-height: 1.45;
}

/* ==========================================================================
   B2B INQUIRY CONFIGURATOR & FORM
   ========================================================================== */
.lv-configurator-box {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  box-shadow: var(--lv-shadow-lg);
  border: 1px solid #ececec;
  padding: 45px;
  max-width: 980px;
  margin: 0 auto;
}

.lv-config-group {
  margin-bottom: 28px;
}

.lv-config-label {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--lv-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lv-config-label span.req {
  color: var(--lv-primary);
}

.lv-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lv-chip {
  background: var(--lv-gray-bg);
  border: 1.5px solid transparent;
  padding: 10px 18px;
  border-radius: var(--lv-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lv-charcoal);
  cursor: pointer;
  transition: var(--lv-transition);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lv-chip:hover {
  background: #eaeaea;
  transform: translateY(-1px);
}

.lv-chip.active {
  background: var(--lv-primary-light);
  border-color: var(--lv-primary);
  color: var(--lv-primary);
  font-weight: 700;
}

.lv-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.lv-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lv-form-group.full-width {
  grid-column: 1 / -1;
}

.lv-form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lv-gray-dark);
  text-transform: uppercase;
}

.lv-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--lv-radius-sm);
  border: 1px solid #dcdcdc;
  font-family: var(--lv-font);
  font-size: 0.95rem;
  color: var(--lv-dark);
  background: #fafafa;
  transition: var(--lv-transition);
}

.lv-input:focus {
  outline: none;
  border-color: var(--lv-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 17, 1, 0.1);
}

textarea.lv-input {
  min-height: 110px;
  resize: vertical;
}

/* Configurator Live Summary */
.lv-config-summary {
  background: #fdfbf7;
  border: 1px dashed var(--lv-gold);
  border-radius: var(--lv-radius-md);
  padding: 18px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lv-summary-text {
  font-size: 0.9rem;
  color: var(--lv-dark);
}

.lv-summary-text strong {
  color: var(--lv-primary);
}

/* ==========================================================================
   LOCATION & MAP SECTION
   ========================================================================== */
.lv-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  overflow: hidden;
  box-shadow: var(--lv-shadow-md);
}

.lv-location-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.lv-loc-card-header h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.lv-loc-card-header p {
  color: var(--lv-gray);
  font-size: 0.95rem;
}

.lv-loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.lv-loc-item i {
  color: var(--lv-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.lv-loc-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lv-dark);
}

.lv-loc-item p {
  font-size: 0.875rem;
  color: var(--lv-gray);
  line-height: 1.5;
}

.lv-map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.lv-footer {
  background: #0d0d0d;
  color: #a0a0a0;
  padding: 60px 0 25px;
  border-top: 1px solid #222;
}

.lv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.lv-footer-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.lv-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--lv-primary);
}

.lv-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
}

.lv-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.lv-footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   INTERACTIVE MODAL & TOAST
   ========================================================================== */
/* Toast notification */
.lv-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e1e1e;
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--lv-radius-md);
  box-shadow: var(--lv-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99999;
  border-left: 4px solid var(--lv-gold);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
  font-weight: 500;
}

.lv-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* QR Code Modal */
.lv-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lv-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.lv-modal-card {
  background: var(--lv-white);
  border-radius: var(--lv-radius-lg);
  padding: 34px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--lv-shadow-card);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lv-modal-backdrop.active .lv-modal-card {
  transform: scale(1);
}

.lv-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: var(--lv-transition);
}

.lv-modal-close:hover {
  color: var(--lv-primary);
}

.lv-qr-code-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  display: inline-block;
  margin: 18px 0;
  box-shadow: var(--lv-shadow-sm);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .lv-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .lv-steps-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lv-steps-container::before {
    display: none;
  }

  .lv-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .lv-location-grid {
    grid-template-columns: 1fr;
  }

  .lv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lv-topbar-content {
    justify-content: center;
    text-align: center;
  }

  .lv-topbar-left {
    flex-direction: column;
    gap: 6px;
  }

  .lv-nav-links {
    display: none;
    /* In standalone showcase, collapsible or hidden */
  }

  .lv-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lv-pillars-grid {
    grid-template-columns: 1fr;
  }

  .lv-form-grid {
    grid-template-columns: 1fr;
  }

  .lv-bizcard {
    padding: 24px;
  }

  .lv-bizcard-actions {
    grid-template-columns: 1fr;
  }

  .lv-configurator-box {
    padding: 24px;
  }

  .lv-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== 
   EXTRA MOBILE FIXES FOR PRESTASHOP DEPLOYMENT
   ========================================================================== */
#lavitta-b2b-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

#lavitta-b2b-page * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .lv-nav-inner {
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 14px;
  }

  .lv-nav-links {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .lv-nav-actions {
    margin-left: auto;
  }

  .lv-hero-grid,
  .lv-capabilities-grid,
  .lv-location-grid,
  .lv-form-grid {
    grid-template-columns: 1fr !important;
  }

  .lv-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .lv-steps-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .lv-steps-container::before {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lv-topbar {
    display: none;
  }

  .lv-header {
    position: sticky;
    top: 0;
  }

  .lv-nav-inner {
    align-items: flex-start;
  }

  .lv-brand {
    max-width: 100%;
    gap: 10px;
  }

  .lv-brand-logo {
    height: 42px;
  }

  .lv-brand-title {
    font-size: 1rem;
  }

  .lv-brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .lv-nav-links {
    display: none !important;
  }

  .lv-nav-actions {
    width: 100%;
    order: 2;
    margin-left: 0;
  }

  .lv-nav-actions .lv-btn,
  .lv-btn.lv-btn-sm {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .lv-hero-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1.05;
  }

  .lv-hero-desc,
  .lv-section-desc {
    font-size: 1rem;
  }

  .lv-hero-stats,
  .lv-pillars-grid,
  .lv-steps-container,
  .lv-form-grid,
  .lv-bizcard-actions,
  .lv-footer-grid,
  .lv-capabilities-grid,
  .lv-caps-visual,
  .lv-location-grid {
    grid-template-columns: 1fr !important;
  }

  .lv-pillars-grid,
  .lv-steps-container,
  .lv-caps-visual {
    gap: 16px;
  }

  .lv-bizcard,
  .lv-configurator-box,
  .lv-pillar-card,
  .lv-step-card {
    padding: 20px;
  }

  .lv-step-card {
    text-align: left;
    align-items: flex-start;
  }

  .lv-cap-img-wrapper img {
    height: 220px;
  }

  .lv-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .lv-modal-card {
    width: calc(100% - 24px);
    padding: 22px 16px;
  }
}
