
:root {
  --lb-primary: #1a1a2e;
  --lb-secondary: #16213e;
  --lb-accent: #e94560;
  --lb-accent-light: #ff6b88;
  --lb-gold: #d4af37;
  --lb-cream: #faf8f3;
  --lb-gray-light: #f4f4f6;
  --lb-gray-medium: #a8a8b3;
  --lb-gray-dark: #4a4a5e;
  --lb-white: #ffffff;
  --lb-black: #0a0a0f;
  
  --lb-font-display: 'Playfair Display', serif;
  --lb-font-body: 'Source Sans Pro', sans-serif;
  --lb-font-accent: 'Libre Baskerville', serif;
  
  --lb-space-xs: 0.5rem;
  --lb-space-sm: 1rem;
  --lb-space-md: 2rem;
  --lb-space-lg: 4rem;
  --lb-space-xl: 6rem;
  
  --lb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lb-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--lb-font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--lb-primary);
  background-color: var(--lb-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lb-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--lb-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--lb-accent);
  text-decoration: none;
  transition: var(--lb-transition);
}

a:hover {
  color: var(--lb-accent-light);
}

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


.lb-navbar {
  background: var(--lb-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--lb-transition);
}

.lb-navbar.lb-scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.lb-brand {
  font-family: var(--lb-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lb-primary);
  letter-spacing: -0.5px;
}

.lb-brand:hover {
  color: var(--lb-accent);
}

.lb-nav-link {
  font-family: var(--lb-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lb-primary);
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--lb-transition);
}

.lb-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lb-accent);
  transition: var(--lb-transition);
  transform: translateX(-50%);
}

.lb-nav-link:hover {
  color: var(--lb-accent);
}

.lb-nav-link:hover::after {
  width: 80%;
}

.lb-nav-link.active {
  color: var(--lb-accent);
}


.lb-hero-editorial {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lb-cream) 0%, var(--lb-white) 100%);
}
.lb-hero-editorial::before{
  position: absolute;
  content: "";
  background: url("../images/banner.jpg");
  z-index: 6;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-repeat: no-repeat;
}
.lb-hero-editorial .container{
  position: relative;
  z-index: 10;
}

.lb-hero-content {
  position: relative;
  z-index: 2;
  animation: lb-fadeInUp 1s ease-out;
}

.lb-hero-eyebrow {
  font-family: var(--lb-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lb-accent);
  margin-bottom: 1rem;
}

.lb-hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--lb-primary);
}

.lb-hero-title-accent {
  color: var(--lb-accent);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.lb-hero-subtitle {
  font-size: 1.5rem;
  color: var(--lb-gray-dark);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lb-hero-abstract-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.lb-hero-shape-1 {
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: var(--lb-accent);
  border-radius: 50%;
  filter: blur(100px);
}

.lb-hero-shape-2 {
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: var(--lb-gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(80px);
}


.lb-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--lb-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--lb-transition);
  position: relative;
  overflow: hidden;
}

.lb-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.lb-btn:hover::before {
  width: 300px;
  height: 300px;
}

.lb-btn-primary {
  background: var(--lb-accent);
  color: var(--lb-white);
}

.lb-btn-primary:hover {
  background: var(--lb-accent-light);
  color: var(--lb-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.lb-btn-secondary {
  background: transparent;
  color: var(--lb-primary);
  border: 2px solid var(--lb-primary);
}

.lb-btn-secondary:hover {
  background: var(--lb-primary);
  color: var(--lb-white);
  transform: translateY(-2px);
}

.lb-btn-outline {
  background: transparent;
  color: var(--lb-accent);
  border: 2px solid var(--lb-accent);
}

.lb-btn-outline:hover {
  background: var(--lb-accent);
  color: var(--lb-white);
}


.lb-section {
  padding: var(--lb-space-xl) 0;
  position: relative;
}

.lb-section-alt {
  background: var(--lb-white);
}

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

.lb-section-dark h1,
.lb-section-dark h2,
.lb-section-dark h3,
.lb-section-dark h4,
.lb-section-dark h5,
.lb-section-dark h6 {
  color: var(--lb-white);
}

.lb-section-title {
  text-align: center;
  margin-bottom: var(--lb-space-lg);
  position: relative;
}

.lb-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--lb-accent);
  margin: 1.5rem auto 0;
}

.lb-section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--lb-gray-dark);
  max-width: 700px;
  margin: 0 auto 3rem;
}


.lb-interactive-selector {
  background: var(--lb-white);
  padding: 3rem;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.lb-selector-question {
  font-family: var(--lb-font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--lb-primary);
}

.lb-selector-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lb-selector-option {
  background: var(--lb-gray-light);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--lb-transition);
  border: 3px solid transparent;
}

.lb-selector-option:hover {
  border-color: var(--lb-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lb-selector-option.lb-selected {
  background: var(--lb-accent);
  color: var(--lb-white);
  border-color: var(--lb-accent);
}

.lb-selector-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--lb-accent);
}

.lb-selector-option.lb-selected .lb-selector-icon {
  color: var(--lb-white);
}

.lb-selector-result {
  background: var(--lb-cream);
  padding: 2rem;
  border-left: 4px solid var(--lb-accent);
  display: none;
}

.lb-selector-result.lb-active {
  display: block;
  animation: lb-fadeIn 0.5s ease-out;
}


.lb-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.lb-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--lb-accent);
  transform: translateX(-50%);
}

.lb-timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 56%;
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-50px);
  animation: lb-slideInLeft 0.8s ease-out forwards;
}

.lb-timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 56%;
  transform: translateX(50px);
  animation: lb-slideInRight 0.8s ease-out forwards;
}

.lb-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.lb-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.lb-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.lb-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.lb-timeline-item:nth-child(5) { animation-delay: 0.5s; }

.lb-timeline-content {
  background: var(--lb-white);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  position: relative;
}

.lb-timeline-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--lb-accent);
  color: var(--lb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lb-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}


.lb-service-card {
  background: var(--lb-white);
  padding: 3rem;
  height: 100%;
  transition: var(--lb-transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lb-gray-light);
}

.lb-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--lb-accent);
  transform: scaleX(0);
  transition: var(--lb-transition);
}

.lb-service-card:hover::before {
  transform: scaleX(1);
}

.lb-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lb-service-icon {
  font-size: 3.5rem;
  color: var(--lb-accent);
  margin-bottom: 1.5rem;
}

.lb-service-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.lb-service-description {
  color: var(--lb-gray-dark);
  margin-bottom: 2rem;
}

.lb-service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.lb-service-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--lb-gray-dark);
}

.lb-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lb-accent);
  font-weight: 700;
  font-size: 1.2rem;
}


.lb-article-card {
  background: var(--lb-white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--lb-transition);
  border: 1px solid var(--lb-gray-light);
}

.lb-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lb-article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.lb-article-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.lb-article-category {
  font-family: var(--lb-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lb-accent);
  margin-bottom: 0.5rem;
}

.lb-article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lb-article-excerpt {
  color: var(--lb-gray-dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.lb-article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--lb-gray-medium);
}


.lb-quote-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.lb-quote-item {
  display: none;
  text-align: center;
}

.lb-quote-item.lb-active {
  display: block;
  animation: lb-fadeIn 0.8s ease-out;
}

.lb-quote-text {
  font-family: var(--lb-font-accent);
  font-size: 1.75rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--lb-primary);
  margin-bottom: 2rem;
  position: relative;
}

.lb-quote-text::before {
  content: '"';
  font-size: 6rem;
  color: var(--lb-accent);
  position: absolute;
  top: -2rem;
  left: -2rem;
  opacity: 0.3;
}

.lb-quote-author {
  font-family: var(--lb-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-gray-dark);
}

.lb-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.lb-carousel-dot {
  width: 12px;
  height: 12px;
  background: var(--lb-gray-medium);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--lb-transition);
}

.lb-carousel-dot.lb-active {
  background: var(--lb-accent);
  transform: scale(1.3);
}


.lb-manifesto {
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.lb-manifesto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

.lb-manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lb-manifesto-title {
  font-size: 3rem;
  color: var(--lb-white);
  margin-bottom: 2rem;
}

.lb-manifesto-text {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lb-manifesto-signature {
  font-family: var(--lb-font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--lb-accent);
  margin-top: 2rem;
}


.lb-pricing-card {
  background: var(--lb-white);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.lb-pricing-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--lb-accent);
  color: var(--lb-white);
  padding: 0.5rem 3rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.lb-pricing-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lb-pricing-price {
  font-family: var(--lb-font-display);
  font-size: 4rem;
  color: var(--lb-accent);
  margin-bottom: 1rem;
}

.lb-pricing-description {
  color: var(--lb-gray-dark);
  margin-bottom: 2rem;
}

.lb-pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.lb-pricing-features li {
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--lb-gray-light);
}

.lb-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lb-accent);
  font-weight: 700;
  font-size: 1.3rem;
}


.lb-footer {
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: 4rem 0 2rem;
}

.lb-footer-brand {
  font-family: var(--lb-font-display);
  font-size: 2rem;
  color: var(--lb-white);
  margin-bottom: 1rem;
}

.lb-footer-description {
  color: var(--lb-gray-medium);
  margin-bottom: 1.5rem;
}

.lb-footer-title {
  font-size: 1.25rem;
  color: var(--lb-white);
  margin-bottom: 1rem;
}

.lb-footer-link {
  color: var(--lb-gray-medium);
  display: block;
  padding: 0.5rem 0;
  transition: var(--lb-transition);
}

.lb-footer-link:hover {
  color: var(--lb-accent);
  padding-left: 0.5rem;
}

.lb-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.lb-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--lb-transition);
}

.lb-footer-social a:hover {
  background: var(--lb-accent);
  transform: translateY(-3px);
}

.lb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--lb-gray-medium);
}


.lb-contact-form {
  background: var(--lb-white);
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.lb-form-group {
  margin-bottom: 1.5rem;
}

.lb-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--lb-primary);
}

.lb-form-control {
  width: 100%;
  padding: 1rem;
  font-family: var(--lb-font-body);
  font-size: 1rem;
  border: 2px solid var(--lb-gray-light);
  background: var(--lb-cream);
  transition: var(--lb-transition);
}

.lb-form-control:focus {
  outline: none;
  border-color: var(--lb-accent);
  background: var(--lb-white);
}

.lb-form-error {
  color: var(--lb-accent);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.lb-form-control.lb-invalid {
  border-color: var(--lb-accent);
}

.lb-form-control.lb-invalid + .lb-form-error {
  display: block;
}


.lb-contact-info {
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: 3rem;
  height: 100%;
}

.lb-contact-item {
  margin-bottom: 2rem;
}

.lb-contact-icon {
  font-size: 2rem;
  color: var(--lb-accent);
  margin-bottom: 0.5rem;
}

.lb-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lb-contact-value {
  color: var(--lb-gray-medium);
}

.lb-contact-value a {
  color: var(--lb-gray-medium);
}

.lb-contact-value a:hover {
  color: var(--lb-accent);
}


.lb-about-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--lb-primary) 0%, var(--lb-secondary) 100%);
  color: var(--lb-white);
  text-align: center;
}

.lb-about-hero h1 {
  color: var(--lb-white);
  margin-bottom: 1.5rem;
}

.lb-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lb-value-card {
  background: var(--lb-white);
  padding: 2.5rem;
  border-left: 4px solid var(--lb-accent);
  transition: var(--lb-transition);
}

.lb-value-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lb-value-icon {
  font-size: 3rem;
  color: var(--lb-accent);
  margin-bottom: 1rem;
}

.lb-value-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.lb-article-header {
  padding: 6rem 0 3rem;
  background: var(--lb-white);
  text-align: center;
}

.lb-article-header-category {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lb-accent);
  margin-bottom: 1rem;
}

.lb-article-header-title {
  font-size: 3.5rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.lb-article-header-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--lb-gray-medium);
}

.lb-article-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 3rem;
}

.lb-article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.lb-article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.lb-article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.lb-article-body p {
  margin-bottom: 1.5rem;
}

.lb-article-body ul,
.lb-article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.lb-article-body li {
  margin-bottom: 0.5rem;
}

.lb-article-pullquote {
  font-family: var(--lb-font-accent);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--lb-primary);
  border-left: 4px solid var(--lb-accent);
  padding: 2rem;
  margin: 3rem 0;
  background: var(--lb-cream);
}


.lb-legal-page {
  padding: 4rem 0;
}

.lb-legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--lb-white);
  padding: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.lb-legal-content h1 {
  border-bottom: 3px solid var(--lb-accent);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.lb-legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--lb-accent);
}

.lb-legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.lb-legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.lb-legal-content li {
  margin-bottom: 0.75rem;
}

.lb-legal-last-updated {
  font-style: italic;
  color: var(--lb-gray-medium);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lb-gray-light);
}


.lb-divider-wave {
  width: 100%;
  height: 100px;
  background: var(--lb-white);
}

.lb-divider-slant {
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, var(--lb-cream) 49%, var(--lb-white) 50%);
}


@keyframes lb-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lb-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lb-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lb-slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.lb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lb-primary);
  color: var(--lb-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.lb-cookie-banner.lb-show {
  display: block;
  animation: lb-slideUp 0.5s ease-out;
}

@keyframes lb-slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.lb-cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.lb-cookie-text {
  flex-grow: 1;
}

.lb-cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.lb-btn-cookie {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}


@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .lb-hero-title {
    font-size: 3rem;
  }
  
  .lb-timeline::before {
    left: 30px;
  }
  
  .lb-timeline-item,
  .lb-timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
  }
  
  .lb-timeline-number {
    left: 30px;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  :root {
    --lb-space-lg: 3rem;
    --lb-space-xl: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .lb-hero-title {
    font-size: 2.5rem;
  }
  
  .lb-hero-subtitle {
    font-size: 1.25rem;
  }
  
  .lb-section-title {
    font-size: 2rem;
  }
  
  .lb-manifesto-title {
    font-size: 2rem;
  }
  
  .lb-article-header-title {
    font-size: 2.5rem;
  }
  
  .lb-quote-text {
    font-size: 1.25rem;
  }
  
  .lb-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .lb-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .lb-btn-cookie {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .lb-service-card,
  .lb-contact-form,
  .lb-contact-info,
  .lb-pricing-card,
  .lb-legal-content {
    padding: 2rem;
  }
  
  .lb-interactive-selector {
    padding: 2rem;
  }
  
  .lb-selector-options {
    grid-template-columns: 1fr;
  }
}


.lb-text-center {
  text-align: center;
}

.lb-text-accent {
  color: var(--lb-accent);
}

.lb-mt-1 { margin-top: var(--lb-space-xs); }
.lb-mt-2 { margin-top: var(--lb-space-sm); }
.lb-mt-3 { margin-top: var(--lb-space-md); }
.lb-mt-4 { margin-top: var(--lb-space-lg); }

.lb-mb-1 { margin-bottom: var(--lb-space-xs); }
.lb-mb-2 { margin-bottom: var(--lb-space-sm); }
.lb-mb-3 { margin-bottom: var(--lb-space-md); }
.lb-mb-4 { margin-bottom: var(--lb-space-lg); }

.lb-pt-1 { padding-top: var(--lb-space-xs); }
.lb-pt-2 { padding-top: var(--lb-space-sm); }
.lb-pt-3 { padding-top: var(--lb-space-md); }
.lb-pt-4 { padding-top: var(--lb-space-lg); }

.lb-pb-1 { padding-bottom: var(--lb-space-xs); }
.lb-pb-2 { padding-bottom: var(--lb-space-sm); }
.lb-pb-3 { padding-bottom: var(--lb-space-md); }
.lb-pb-4 { padding-bottom: var(--lb-space-lg); }



.lb-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.navbar-collapse{
  justify-content: flex-end;
  display: flex;
}


footer .lb-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}

@media(max-width: 991px){
  .navbar-collapse{
    display: none!important;
  }
}