/* ============================================
   PAGE BUILDER - Professional Layout System
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors, typography, spacing, shadows, radii, gradients:
     ALL defined in brand-components.css (single source of truth).
     Do NOT add color/font/spacing tokens here. */

  /* Legacy aliases (used by template layout classes) */
  --primary: var(--lbpf-color-primary);
  --primary-dark: var(--lbpf-color-primary-dark);
  --secondary: var(--lbpf-color-secondary);
  --text-primary: var(--lbpf-color-text);
  --text-secondary: var(--lbpf-color-text-muted);
  --background: var(--lbpf-color-background);
  --surface: var(--lbpf-color-surface);
  --footer-surface: #efe1d5;
  --border: var(--lbpf-border-color);

  /* Layout Dimensions */
  --page-max-width: 1280px;
  --content-width: 880px;
  --navbar-height: 70px;

  /* Effects */
  --transition: all 0.3s ease;
  --shadow-sm: var(--lbpf-shadow-soft);
  --shadow-md: var(--lbpf-shadow-medium);
  --shadow-lg: var(--lbpf-shadow-strong);
  --blur: blur(12px);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lx-guide-page {
  background: transparent;
}

/* Page Container - Max 1280px */
.page-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-top: 0;
  background-color: var(--surface);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* ============================================
   NAVBAR (Sticky)
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--navbar-height);
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-hidden {
  transform: translateY(-100%);
}

/* Hide hamburger, center pills, and right items on scroll */
.navbar-hidden .navbar-hamburger-wrapper,
.navbar-hidden .navbar-center,
.navbar-hidden .navbar-right {
  opacity: 0;
  visibility: hidden;
}

/* Logo stays visible when navbar hides */
.navbar-hidden .navbar-brand {
  opacity: 1;
  visibility: visible;
}

.navbar.scrolled {
  background: transparent;
  border-bottom: none;
}

/* Main wrapper - respects 1280px boundary */
.navbar-wrapper {
  width: 100%;
  max-width: var(--page-max-width);
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Center pills */
.navbar-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 auto;
}

.navbar-pills {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Right side - horizontal layout */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  justify-content: flex-end;
}

/* Language selector */
.navbar-language {
  position: relative;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  border: none;
  min-height: 32px;
}

/* Pills and buttons color on scroll */
.navbar.scrolled .lbpf-pill--ghost {
  color: var(--text-primary);
}

.navbar.scrolled .navbar-search-btn {
  color: var(--text-primary);
}

.language-icon {
  font-size: 1rem;
}

.language-text {
  font-weight: 500;
  font-size: 0.85rem;
}

.language-arrow {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.language-selector:hover .language-arrow {
  transform: translateY(2px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--lbpf-curve-medium);
  box-shadow: var(--lbpf-shadow-strong);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-language:hover .language-dropdown,
.language-selector:focus + .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.language-option:hover {
  background: var(--neutral-100);
}

.language-option.active {
  background: var(--lbpf-color-accent);
  color: var(--neutral-900);
  font-weight: 600;
}

/* ─── Auth Dropdown (logged-in user pill) ─── */
.navbar-auth-dropdown-wrapper {
  position: relative;
}

.navbar-auth-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--lbpf-curve-medium);
  box-shadow: var(--lbpf-shadow-strong);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-auth-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.auth-dropdown-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.auth-dropdown-link:hover {
  background: var(--neutral-100);
}

.auth-logout-btn {
  border-top: 1px solid var(--neutral-200);
  color: var(--lbpf-color-primary);
}

/* Search button */
.navbar-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(249, 250, 251, 0.78));
  border-radius: var(--lbpf-curve-full);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  box-shadow: var(--lbpf-shadow-medium);
}

.navbar-search-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(249, 250, 251, 0.88));
  box-shadow: var(--lbpf-shadow-strong);
  transform: translateY(-2px);
}

/* Search Modal - Transparent overlay */
.navbar-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--navbar-height) + 1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2000;
  pointer-events: none;
}

.navbar-search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal-content {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-modal-input {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: var(--lbpf-border-thin) solid rgba(255, 255, 255, 0.25);
  border-radius: var(--lbpf-curve-full);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(249, 250, 251, 0.78));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--lbpf-shadow-medium);
  font-size: 1rem;
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
  min-height: 48px;
}

.search-modal-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

.search-modal-input:focus {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(249, 250, 251, 0.88));
  box-shadow: var(--lbpf-shadow-strong);
  border-color: rgba(255, 255, 255, 0.45);
}

.search-modal-close {
  display: none;
}

/* Top row: pills + actions */
.navbar-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Search bar full width */
.navbar-search {
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  position: fixed;
  top: 19px;
  left: 96px;
  z-index: 1003;
}

.navbar-logo {
  height: 93.5px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  mix-blend-mode: screen;
}

.navbar.scrolled .navbar-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  mix-blend-mode: normal;
  height: 93.5px;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.03);
}

/* Old nav-pill styles removed - now using .lbpf-pill--ghost from brand-components.css */

/* Hamburger Menu */
.navbar-hamburger-wrapper {
  position: relative;
}

.navbar-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.navbar-hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  transform-origin: 1px;
}

.navbar-hamburger:hover span {
  background: var(--lbpf-color-accent);
}

/* Hamburger color changes on scroll (when over white background) */
.navbar.scrolled .navbar-hamburger span {
  background: var(--text-primary);
}

.navbar.scrolled .navbar-hamburger:hover span {
  background: var(--lbpf-color-accent);
}

.navbar-hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.navbar-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Topics Dropdown */
.navbar-topics-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--neutral-200);
  border-radius: var(--lbpf-curve-medium);
  box-shadow: var(--lbpf-shadow-strong);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-topics-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topic-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--neutral-100);
}

.topic-link:last-child {
  border-bottom: none;
}

.topic-link:hover {
  background: var(--neutral-100);
  color: var(--lbpf-color-primary);
}

.topic-separator {
  height: 1px;
  background: var(--neutral-200);
  margin: 0.5rem 0;
}

.navbar-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.btn-primary {
  padding: 0.36rem 0.92rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #333;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .btn-primary {
  background: rgba(249, 245, 240, 0.95);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 3.4px 13.6px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .btn-primary:hover {
  background: #5a4f4a;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-text {
  padding: 0.36rem 0.92rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #333;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .btn-text {
  background: rgba(249, 245, 240, 0.95);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-text:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 3.4px 13.6px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .btn-text:hover {
  background: #5a4f4a;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-container {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 0.72rem;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  color: #666;
  opacity: 0.7;
  transition: var(--transition);
}

.navbar.scrolled .search-icon {
  color: var(--text-secondary);
  opacity: 0.8;
}

.search-input {
  width: 100%;
  padding: 0.54rem 0.72rem 0.54rem 2.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
}

.search-input::placeholder {
  color: #333;
  opacity: 0.8;
  font-weight: 500;
}

.navbar.scrolled .search-input {
  background: rgba(249, 245, 240, 0.98);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .search-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.9;
  font-weight: 500;
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 3.4px 13.6px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .search-input:focus {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

/* ============================================
   HERO SECTION (Full width, full viewport)
   ============================================ */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: var(--content-width);
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.hero-subheadline {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ============================================
   CONTENT SECTION (Constrained width)
   ============================================ */

.content-section {
  padding: 5rem 2rem;
  width: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  background-color: #F5F5F5;
}

.content-section > div {
  max-width: var(--content-width);
  width: 100%;
}

.content-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
}

.content-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 65ch;
}

/* Demo Cards & Elements */
.demo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.demo-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.demo-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-box {
  background: var(--lbpf-color-accent-soft);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box p {
  margin: 0;
  color: var(--text-primary);
}

.map-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

/* ============================================
   IMAGE SECTION (Connects to footer)
   ============================================ */

.image-section {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  height: 700px;
  min-height: 700px;
}

.image-section img {
  width: 100%;
  height: 120%;
  min-height: 840px;
  object-fit: cover;
  display: block;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* ============================================
   CTA SECTION (Full width)
   ============================================ */

.cta-section {
  width: 100%;
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-headline {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.cta-section .btn {
  background-color: white;
  color: var(--primary);
  font-weight: 700;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.cta-section .btn:hover {
  background-color: var(--surface);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER - Modern Dark Design
   ============================================ */

.footer-container {
  width: 100%;
  background: #1a1a1a;
  color: #e8e8e8;
  margin: 0;
  padding: 0;
  margin-top: 0 !important;
}

/* Skyline Header */
.footer-skyline {
  width: 100%;
  background: #1a1a1a;
  margin: 0;
  padding: 0;
}

.footer-skyline img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* Footer Content Grid */
.footer-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 2rem 1.5rem;
  background: #1a1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lbpf-color-accent);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--lbpf-color-accent);
}

/* Payment Methods - Vertical Stack */
.footer-payment-icons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.payment-icon {
  width: 36px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-icon:hover {
  opacity: 1;
}

/* Separation Line */
.footer-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
  padding: 0;
}

/* Social Media Section - Centered */
.footer-social-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
  background: #1a1a1a;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.footer-social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.footer-social-icons .social-icon:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-social-icons .social-icon img {
  width: 32px;
  height: 32px;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
  background: #1a1a1a;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #e8e8e8;
  text-align: center;
}

.footer-credit a {
  color: var(--lbpf-color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --content-width: 90%;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: auto;
  }

  .navbar {
    height: auto;
    padding: 1rem;
  }

  .navbar-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .navbar-logo {
    height: 60px;
  }

  .navbar-right {
    width: 100%;
  }

  .navbar-top-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .navbar-categories {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .nav-pill {
    padding: 0.34rem 0.85rem;
    font-size: 0.68rem;
  }

  .navbar-actions {
    width: 100%;
    justify-content: center;
  }

  .search-input {
    font-size: 0.7225rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.25rem;
  }

  .content-section {
    padding: 3rem 1.5rem;
  }

  .content-title {
    font-size: 2rem;
  }

  .content-description {
    font-size: 1rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-headline {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-method {
    font-size: 0.8rem;
  }

  .footer-social-icons .social-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .content-title {
    font-size: 1.75rem;
  }

  .cta-headline {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-payment-icons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .payment-method {
    font-size: 0.75rem;
  }

  .footer-social-icons {
    gap: 0.75rem;
  }

  .footer-social-icons .social-icon img {
    width: 24px;
    height: 24px;
  }

  .footer-credit {
    font-size: 0.75rem;
  }
}
