/* ==========================================================================
   REDDO Translations - Custom Styles
   Tailwind CSS handles utility classes; this file covers custom components only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --brand-red:          #D32F2F;
  --brand-red-light:    #ef4444;
  --brand-dark:         #0f172a;
  --brand-dark-lighter: #1e293b;
  --text-primary:       #0f172a;
  --text-secondary:     #64748b;
  --bg-light:           #f8fafc;
  --bg-white:           #ffffff;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* --------------------------------------------------------------------------
   Hero Background
   -------------------------------------------------------------------------- */
.hero-bg {
  position: relative;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.72) 50%,
    rgba(211, 47, 47, 0.40) 100%
  );
  z-index: 1;
}

.hero-bg > * {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Glass Navigation
   -------------------------------------------------------------------------- */
.glass-nav {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* --------------------------------------------------------------------------
   Text Gradient
   -------------------------------------------------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   Accent Button
   -------------------------------------------------------------------------- */
.accent-red-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.accent-red-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.45);
  transform: translateY(-1px);
}

.accent-red-btn:active {
  filter: brightness(0.96);
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Card Hover
   -------------------------------------------------------------------------- */
.hover-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hover-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

/* --------------------------------------------------------------------------
   Form Glow
   -------------------------------------------------------------------------- */
.form-glow {
  transition: box-shadow 0.2s ease;
}

.form-glow:focus,
.form-glow:focus-within {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.18);
  outline: none;
}

/* --------------------------------------------------------------------------
   ISO Badge
   -------------------------------------------------------------------------- */
.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-white);
  border: 1.5px solid rgba(211, 47, 47, 0.25);
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--brand-red);
}

/* --------------------------------------------------------------------------
   Step Process Line
   -------------------------------------------------------------------------- */
.step-line {
  position: absolute;
  top: 50%;
  left: calc(100% + 0px);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red) 0%, rgba(211, 47, 47, 0.2) 100%);
  transform: translateY(-50%);
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Mega Menu
   -------------------------------------------------------------------------- */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 800px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  z-index: 50;
  padding: 2rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 4px solid var(--brand-red);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mega-menu.active {
  display: grid;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Dropdown Menu
   -------------------------------------------------------------------------- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  z-index: 50;
  padding: 0.75rem 0;
  border-top: 4px solid var(--brand-red);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--brand-red);
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: var(--brand-red);
}

.breadcrumbs > *:not(:last-child)::after {
  content: '>';
  margin-left: 0.25rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slideUp {
  animation: slideUp 0.55s ease forwards;
}

/* --------------------------------------------------------------------------
   Section Animate (IntersectionObserver trigger)
   -------------------------------------------------------------------------- */
.section-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Sticky Mobile CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 16px rgba(211, 47, 47, 0.30);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile Menu Visibility
   -------------------------------------------------------------------------- */
.mobile-menu-open .mobile-menu {
  display: block;
}

/* --------------------------------------------------------------------------
   Nav link color change on glass-nav (scrolled state)
   -------------------------------------------------------------------------- */
.glass-nav .nav-link {
  color: var(--text-primary);
}

.glass-nav .nav-link:hover {
  color: var(--brand-red);
}

.glass-nav .nav-logo-red {
  color: var(--brand-red);
}

.glass-nav .nav-logo-gray {
  color: var(--text-secondary);
}

.glass-nav .nav-lang-active {
  color: var(--text-primary);
}

.glass-nav .nav-lang-inactive {
  color: var(--text-secondary);
}

.glass-nav .nav-lang-inactive:hover {
  color: var(--text-primary);
}

.glass-nav .mobile-menu-btn {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Icon Circles
   -------------------------------------------------------------------------- */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(211, 47, 47, 0.2);
  background-color: rgba(211, 47, 47, 0.06);
  flex-shrink: 0;
}

.icon-circle-dark {
  border-color: rgba(239, 68, 68, 0.3);
  background-color: rgba(239, 68, 68, 0.1);
}

.icon-circle-lg {
  width: 64px;
  height: 64px;
}

/* --------------------------------------------------------------------------
   Glassmorphism Cards
   -------------------------------------------------------------------------- */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.12), 0 2px 8px rgba(15, 23, 42, 0.1);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.glass-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

/* --------------------------------------------------------------------------
   CTA Pulse
   -------------------------------------------------------------------------- */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.3),
                0 4px 16px rgba(211, 47, 47, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(211, 47, 47, 0),
                0 4px 24px rgba(211, 47, 47, 0.55);
  }
}

.cta-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Scroll Progress
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  z-index: 60;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   Stagger Delays
   -------------------------------------------------------------------------- */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   Hero Decorative
   -------------------------------------------------------------------------- */
.hero-dots {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.gradient-orb-red {
  background-color: var(--brand-red);
}

.gradient-orb-blue {
  background-color: #3b82f6;
}

/* --------------------------------------------------------------------------
   Trust Badge
   -------------------------------------------------------------------------- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
}

/* --------------------------------------------------------------------------
   Quote Decoration
   -------------------------------------------------------------------------- */
.quote-decoration {
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--brand-red);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Visual Lifting - Final Touches
   -------------------------------------------------------------------------- */

.gradient-text {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Specialization card background overlay */
.spec-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.85));
  z-index: 1;
  transition: opacity 0.3s ease;
}

.spec-card:hover .spec-card-overlay {
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Testimonials Carousel
   -------------------------------------------------------------------------- */
.testimonials-carousel {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.testimonials-track {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.initials-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.30);
}

.lang-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.375rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  z-index: 2;
}

.testimonial-arrow {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  z-index: 3;
}

.testimonial-arrow:hover {
  background: rgba(239, 68, 68, 0.20);
  border-color: rgba(239, 68, 68, 0.45);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid var(--brand-red-light);
  outline-offset: 2px;
}

.testimonial-prev { left: -1.25rem; }
.testimonial-next { right: -1.25rem; }

@media (max-width: 640px) {
  .testimonial-prev { left: 0.25rem; }
  .testimonial-next { right: 0.25rem; }
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.testimonial-dots button:hover {
  background: rgba(255, 255, 255, 0.45);
}

.testimonial-dots button.active {
  width: 24px;
  background: var(--brand-red-light);
}

.testimonial-dots button:focus-visible {
  outline: 2px solid var(--brand-red-light);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Blog Category Filters
   -------------------------------------------------------------------------- */
.blog-filter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.blog-filter:hover {
  border-color: rgba(211, 47, 47, 0.4);
  color: var(--brand-red);
}

.blog-filter.active {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
}

.blog-filter .count {
  display: inline-block;
  margin-left: 0.375rem;
  font-size: 0.75rem;
  opacity: 0.65;
  font-weight: 700;
}

.blog-filter:focus-visible {
  outline: 2px solid var(--brand-red-light);
  outline-offset: 2px;
}

/* Logo Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
  padding: 1rem 0;
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   Cookie Consent Banner (RODO/ePrivacy/Consent Mode v2)
   ========================================================================== */

#reddo-cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
  animation: reddoCookieFadeIn 0.25s ease-out;
}

@keyframes reddoCookieFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes reddoCookieSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.reddo-cookie-modal {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
  color: #0f172a;
  animation: reddoCookieSlideUp 0.3s ease-out;
}

@media (min-width: 640px) {
  #reddo-cookie-banner {
    align-items: center;
    padding: 1rem;
  }
  .reddo-cookie-modal {
    border-radius: 1rem;
    padding: 2.25rem 2rem 1.75rem;
  }
}

.reddo-cookie-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.reddo-cookie-close:hover,
.reddo-cookie-close:focus {
  background: #f1f5f9;
  color: #0f172a;
  outline: none;
}

.reddo-cookie-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.reddo-cookie-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  text-align: center;
  color: #0f172a;
}

.reddo-cookie-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 1.5rem;
  text-align: center;
}

.reddo-cookie-link {
  color: #D32F2F;
  text-decoration: underline;
}

.reddo-cookie-link:hover {
  color: #ef4444;
}

.reddo-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .reddo-cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.reddo-cookie-btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.reddo-cookie-btn:focus {
  outline: 2px solid #D32F2F;
  outline-offset: 2px;
}

.reddo-cookie-btn-primary {
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
}

.reddo-cookie-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
  transform: translateY(-1px);
}

.reddo-cookie-btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
}

.reddo-cookie-btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* Customize panel */
.reddo-cookie-modal-customize .reddo-cookie-desc {
  text-align: left;
}

.reddo-cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reddo-cookie-cat {
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 1rem;
}

.reddo-cookie-cat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.reddo-cookie-cat-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0 0 0.375rem;
  color: #0f172a;
}

.reddo-cookie-cat-info {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.reddo-cookie-toggle {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.reddo-cookie-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.reddo-cookie-toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.reddo-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.reddo-cookie-toggle input[type="checkbox"]:checked + .reddo-cookie-toggle-slider {
  background: #D32F2F;
}

.reddo-cookie-toggle input[type="checkbox"]:checked + .reddo-cookie-toggle-slider::before {
  transform: translateX(20px);
}

.reddo-cookie-toggle input[type="checkbox"]:focus-visible + .reddo-cookie-toggle-slider {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.3);
}

.reddo-cookie-toggle-locked {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
}

/* ==========================================================================
   Landing pages (PMAX paid campaigns) — /lp/<slug>/
   Minimalna nav, focus na konwersję, mobile-first.
   ========================================================================== */

/* ─── Top bar (minimalny: logo + tel + CTA) ─── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .lp-nav-inner { padding: 1rem 2rem; }
}

.lp-nav-logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 640px) {
  .lp-nav-logo img { height: 2.5rem; }
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.lp-nav-cta:hover {
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.35);
  transform: translateY(-1px);
}

.lp-nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-nav-phone:hover { color: #D32F2F; }

@media (min-width: 640px) {
  .lp-nav-phone { display: inline-flex; }
}

/* ─── Hero ─── */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 3rem 1rem 4rem;
}

@media (min-width: 768px) {
  .lp-hero { padding: 5rem 2rem 6rem; }
}

.lp-hero::before,
.lp-hero::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
}

.lp-hero::before {
  top: 10%;
  left: -8rem;
  background: rgba(211, 47, 47, 0.25);
}

.lp-hero::after {
  bottom: 10%;
  right: -8rem;
  background: rgba(59, 130, 246, 0.15);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.lp-hero-eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 1.25rem;
}

.lp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

@media (min-width: 640px) {
  .lp-hero h1 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .lp-hero h1 { font-size: 3.25rem; }
}

.lp-hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .lp-hero-subtitle { font-size: 1.125rem; }
}

.lp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .lp-hero-actions {
    flex-direction: row;
    max-width: 36rem;
  }
}

.lp-hero-btn-primary,
.lp-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.lp-hero-btn-primary {
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.35);
  flex: 1;
}

.lp-hero-btn-primary:hover {
  box-shadow: 0 8px 28px rgba(211, 47, 47, 0.5);
  transform: translateY(-1px);
}

.lp-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  flex: 1;
}

.lp-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ─── Pasek zaufania (ISO, Google, lata) ─── */
.lp-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 1rem;
}

.lp-trust-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .lp-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: #475569;
}

.lp-trust-item strong {
  font-weight: 700;
  color: #0f172a;
  font-family: 'Montserrat', sans-serif;
}

.lp-trust-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #D32F2F;
}

/* ─── Sekcja "co tłumaczymy" — use cases ─── */
.lp-section {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .lp-section { padding: 5rem 2rem; }
}

.lp-section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
  .lp-section-header h2 { font-size: 2.25rem; }
}

.lp-section-header p {
  font-size: 1rem;
  color: #64748b;
  max-width: 36rem;
  margin: 0 auto;
}

.lp-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lp-usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-usecase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.lp-usecase-card:hover {
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.lp-usecase-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(211, 47, 47, 0.08);
  color: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lp-usecase-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.lp-usecase-card p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ─── Proces krok po kroku ─── */
.lp-process {
  background: #f8fafc;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: lp-step;
}

@media (min-width: 768px) {
  .lp-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-process-step {
  position: relative;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.lp-process-step::before {
  counter-increment: lp-step;
  content: counter(lp-step);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
}

.lp-process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #0f172a;
  margin: 1rem 0 0.5rem;
}

.lp-process-step p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ─── Formularz ─── */
.lp-form-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.lp-form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.lp-form-section .lp-section-inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.lp-form-section .lp-section-header h2 { color: #ffffff; }
.lp-form-section .lp-section-header p { color: rgba(255, 255, 255, 0.75); }

.lp-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
  .lp-form { padding: 2.5rem; }
}

.lp-form-row {
  margin-bottom: 1.125rem;
}

.lp-form label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.375rem;
}

.lp-form label .lp-required {
  color: #fca5a5;
  margin-left: 0.125rem;
}

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"],
.lp-form textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.625rem;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.2s;
}

.lp-form input::placeholder,
.lp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.lp-form input:focus,
.lp-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.25);
}

.lp-form textarea {
  min-height: 5rem;
  resize: vertical;
}

/* File input — niestandardowy wygląd */
.lp-form-file {
  position: relative;
  display: block;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 0.625rem;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.03);
}

.lp-form-file:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.lp-form-file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.lp-form-file-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.lp-form-file-content svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fca5a5;
  flex-shrink: 0;
}

.lp-form-file-name {
  display: none;
  color: #ffffff;
  font-weight: 600;
}

.lp-form-file.has-file .lp-form-file-content {
  display: none;
}

.lp-form-file.has-file .lp-form-file-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-form-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.375rem;
}

.lp-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.lp-form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #ef4444;
  cursor: pointer;
}

.lp-form-checkbox a {
  color: #fca5a5;
  text-decoration: underline;
}

.lp-form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.35);
}

.lp-form-submit:hover:not(:disabled) {
  box-shadow: 0 8px 28px rgba(211, 47, 47, 0.5);
  transform: translateY(-1px);
}

.lp-form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.lp-form-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}

.lp-form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.lp-form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.lp-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ─── Stopka minimalna ─── */
.lp-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.65);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.lp-footer-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.lp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .lp-footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.lp-footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer-contact a:hover { color: #ffffff; }

.lp-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.lp-footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 0.375rem;
}

.lp-footer-legal a:hover { color: #ffffff; }

/* ─── LP: sekcja lokalizacji (mapa + adres + godziny + trasa) ─── */
.lp-location {
  background: #ffffff;
}

.lp-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .lp-location-grid {
    grid-template-columns: 5fr 6fr;
    gap: 2.5rem;
  }
}

.lp-location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.lp-location-card:last-of-type { border-bottom: 0; }

.lp-location-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(211, 47, 47, 0.08);
  color: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-location-card-text {
  flex: 1;
}

.lp-location-card-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.25rem;
}

.lp-location-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.lp-location-card-value a {
  color: inherit;
  text-decoration: none;
}

.lp-location-card-value a:hover { color: #D32F2F; }

.lp-location-card-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0.25rem 0 0;
  line-height: 1.45;
}

.lp-location-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.25rem 0.625rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803d;
}

.lp-location-status::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.lp-location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .lp-location-actions { flex-direction: row; }
}

.lp-location-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.2s;
}

.lp-location-btn-primary {
  background: linear-gradient(135deg, #D32F2F 0%, #ef4444 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.3);
}

.lp-location-btn-primary:hover {
  box-shadow: 0 6px 22px rgba(211, 47, 47, 0.45);
  transform: translateY(-1px);
}

.lp-location-btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.lp-location-btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.lp-location-transport {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.lp-transport-item {
  text-align: center;
  padding: 0.75rem 0.375rem;
  background: #f8fafc;
  border-radius: 0.625rem;
}

.lp-transport-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

.lp-transport-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #0f172a;
  margin: 0 0 0.125rem;
}

.lp-transport-detail {
  font-size: 0.6875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

.lp-location-map {
  position: relative;
  width: 100%;
  min-height: 22rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
  .lp-location-map { min-height: 100%; }
}

.lp-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
