@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');
:root {
  --bg-core: #09090b;
  --bg-surface: #18181b;
  --bg-glass: rgba(15, 15, 20, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary-brand: #dc2626;
  --primary-red: #ef4444;
  --primary-blue: #3b82f6;
  --accent-glow: rgba(220, 38, 38, 0.4);
  --blue-glow: rgba(59, 130, 246, 0.4);
  --text-dark: #fafafa;
  --text-light: #ffffff;
  --text-muted: #a1a1aa;
  --border-light: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(9, 9, 11, 0.85);
  --accent-text: var(--primary-brand);
  --accent-blue: var(--primary-blue);
  --mesh-opacity: 0.15;
}
.text-accent {
  color: var(--accent-text);
}
.text-blue {
  color: var(--accent-blue);
}
.glow-text {
  text-shadow: 0 0 15px var(--accent-glow);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent), var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.modal-content:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(59, 130, 246, 0.1);
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: var(--primary-brand);
  transform: rotate(90deg);
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-content {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
}
.modal-image {
  height: 100%;
  min-height: 500px;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.modal-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-eyebrow {
  color: var(--primary-brand);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.modal-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-light);
}
.modal-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.modal-services-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}
.preview-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-brand);
}
.modal-actions {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-image {
    min-height: 250px;
  }
  .modal-info {
    padding: 40px;
  }
  .modal-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .modal-info {
    padding: 30px 20px;
  }
  .modal-services-preview {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn-large {
    width: 100%;
    justify-content: center;
  }
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-core);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
.header {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  filter: drop-shadow(0 0 10px var(--accent-glow));
  display: flex;
  align-items: center;
}
.brand-icon img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-name {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
}
.nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  color: #d4d4d8;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 30px 0;
}
.nav-item:hover {
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.btn-header {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #991b1b 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.btn-header:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-glow);
  border-color: rgba(255, 255, 255, 0.3);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
}
.hero {
  position: relative;
  background: linear-gradient(rgba(9, 9, 11, 0.4), rgba(9, 9, 11, 0.95)), url('assets/hero.webp');
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 85px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0;
  overflow: hidden;
  max-height: 900px;
}
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: auto;
}
.hero-content {
  color: var(--text-light);
}
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title .highlight {
  color: var(--primary-brand);
  text-shadow: 0 0 30px var(--accent-glow);
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e4e4e7;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-desc strong {
  color: var(--text-light);
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-large {
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-red {
  background: linear-gradient(45deg, var(--primary-brand), #b91c1c);
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}
.btn-outline-white {
  background-color: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid var(--glass-border);
}
.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #d4d4d8;
}
.trust-item .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-brand);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-red);
}
.lead-form-wrapper {
  position: relative;
  z-index: 10;
}
.lead-card {
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
}
.lead-card h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.lead-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: none;
}
.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-control::placeholder {
  color: #52525b;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-brand);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-brand), #b91c1c);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
  filter: brightness(1.1);
}
.form-disclaimer {
  display: block;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #52525b;
}
.mesh-bg {
  position: relative;
  overflow: hidden;
}
.mesh-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  opacity: var(--mesh-opacity);
  pointer-events: none;
  z-index: 0;
  animation: mesh-float 20s infinite alternate ease-in-out;
}
@keyframes mesh-float {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(5%, 5%) rotate(5deg);
  }
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--bg-surface);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  min-width: 240px;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--glass-border);
  z-index: 200;
  backdrop-filter: blur(20px);
}
.nav-item.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: flex;
  animation: slideUp 0.2s ease forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu a {
  color: #a1a1aa;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 600;
  font-size: 0.9rem;
}
.dropdown-menu a:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 16px;
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(9, 9, 11, 1)), url('assets/hero.webp');
  background-size: cover;
  background-position: center;
  border: none;
  padding: 140px 5% 100px;
  text-align: center;
  color: white;
}
.page-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.page-subtitle {
  font-size: 1.35rem;
  color: #a1a1aa;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.content-section {
  padding: 100px 5%;
  min-height: 50vh;
  background-color: var(--bg-core);
}
.service-block,
.area-block {
  max-width: 800px;
  margin: 0 auto 60px;
}
.service-block h2,
.area-block h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-block p,
.area-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: var(--bg-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.card-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-size: 1.05rem;
}
.card-link {
  margin-top: auto;
  color: var(--primary-brand);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-link:hover {
  color: var(--primary-red);
}
.star-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.star-rating svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
}
.review-author {
  color: var(--text-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.article-content {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
  color: #d4d4d8;
  font-size: 1.15rem;
}
.article-content h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin: 60px 0 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.article-content h3 {
  color: var(--primary-brand);
  font-size: 1.6rem;
  margin: 40px 0 20px;
  font-weight: 800;
  text-transform: uppercase;
}
.article-content p {
  margin-bottom: 28px;
}
.article-content ul {
  margin: 0 0 32px 32px;
  list-style-type: square;
}
.article-content li {
  margin-bottom: 16px;
  color: #a1a1aa;
}
.article-content img {
  border-radius: 16px;
  margin: 40px 0;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px 0;
}
.faq-question::after {
  content: '+';
  color: var(--primary-brand);
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-question.active::after {
  transform: rotate(45deg);
  display: inline-block;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s, padding 0.4s;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0;
}
.faq-answer.active {
  opacity: 1;
  max-height: 1000px;
  padding: 10px 0 20px;
  transition: max-height 0.4s ease-in, opacity 0.4s 0.1s;
}
.shop-section {
  padding: 100px 5%;
  background-color: var(--bg-core);
  position: relative;
}
.shop-section h2 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.shop-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.shop-card {
  background: var(--bg-surface);
  border-radius: 20px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
.shop-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-brand);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 15px var(--accent-glow);
}
.shop-card-image-content {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.metallic-word-img {
  width: 85%;
  max-width: 280px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 1)) brightness(1.2);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card:hover .metallic-word-img {
  transform: scale(1.1);
}
.shop-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.shop-card:hover .shop-card-overlay {
  opacity: 1;
}
.shop-card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.shop-card:hover .shop-card-img-top {
  transform: scale(1.15);
  filter: brightness(0.6) desaturate(0.5);
}
.shop-card:hover .shop-card-img-top {
  transform: scale(1.05);
}
.shop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(220, 38, 38, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.shop-card:hover::before {
  opacity: 1;
}
.shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.shop-card:hover::after {
  opacity: 0.15;
}
.shop-card-action-content {
  background: #121214;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.shop-btn {
  display: inline-block;
  background: var(--primary-brand);
  color: white;
  padding: 14px 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}
.shop-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--accent-glow);
  border-color: rgba(255, 255, 255, 0.4);
}
.integration-cta {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 60px;
  margin: 80px 0 20px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary-brand);
  position: relative;
  overflow: hidden;
}
.integration-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.integration-cta h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.integration-cta p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.btn-solid-red {
  background: linear-gradient(45deg, var(--primary-brand), #b91c1c);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}
.btn-solid-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: transparent;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}
.social-cta-section {
  padding: 100px 5%;
  background: var(--bg-core);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.social-header-container {
  position: relative;
  z-index: 5;
  margin-bottom: 60px;
}
.social-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.social-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon-box:hover {
  background: var(--primary-brand);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--accent-glow);
}
.social-main-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 550px;
}
.bg-text-outline {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  letter-spacing: 6px;
  z-index: 1;
  pointer-events: none;
  text-transform: uppercase;
  opacity: 0.9;
}
.social-car-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  transform: translateY(10px);
}
.social-car-model {
  width: 95%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}
.social-car-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, transparent 75%);
  z-index: -1;
  filter: blur(15px);
}
.social-cta-btn-wrapper {
  position: relative;
  z-index: 5;
  margin-top: -20px;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 32px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    background: #000000 !important; 
    background-color: #000000 !important;
    padding: 20px 5% 60px !important;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.3s ease;
    z-index: 99999 !important;
    opacity: 1 !important;
    overflow-y: auto;
  }
  .nav-links.active .nav-item {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.1rem;
  }
  .nav-links.active .dropdown-menu {
    position: static;
    box-shadow: none;
    border-left: 2px solid var(--primary-brand);
    background: transparent;
    border-top: none;
    border-radius: 0;
    border-right: none;
    border-bottom: none;
    margin-top: 16px;
    width: 100%;
    flex-basis: 100%;
    display: none;
    padding: 12px 24px;
  }
  .nav-links.active .nav-item.dropdown:hover .dropdown-menu {
    display: flex;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .hero-buttons {
    gap: 12px;
  }
  .btn-large {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
    max-width: 100%;
  }
  .hero-trust-bar {
    padding: 20px 0;
    margin-top: 30px;
  }
  .brand-logo-item img {
    height: 26px !important;
  }
  .trust-bar-scroll {
    gap: 40px;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .shop-section h2 {
    font-size: 2.2rem;
  }
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .integration-cta {
    padding: 40px 24px;
  }
  .cta-button-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-solid-red,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(9, 9, 11, 0.4), rgba(9, 9, 11, 0.95));
  z-index: 1;
}
.hero-trust-bar {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(15px);
  padding: 35px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}
.hero-trust-bar::before,
.hero-trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.hero-trust-bar::before {
  left: 0;
  background: linear-gradient(to right, rgba(9,9,11,0.8), transparent);
}
.hero-trust-bar::after {
  right: 0;
  background: linear-gradient(to left, rgba(9,9,11,0.8), transparent);
}
.trust-bar-scroll {
  display: flex;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
  align-items: center;
}
.trust-bar-track {
  display: flex;
  gap: 80px;
  padding-right: 80px;
  align-items: center;
  flex-shrink: 0;
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.brand-logo-item {
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1;
  transition: 0.3s;
  cursor: default;
  white-space: nowrap;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.1));
}
.brand-logo-item img {
  filter: brightness(0) invert(1) brightness(1.2) !important;
  opacity: 1 !important;
}
.brand-logo-item:hover {
  opacity: 1;
  color: var(--text-light);
  text-shadow: 0 0 15px var(--accent-glow);
}
.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.special-service-card {
  background: rgba(30, 41, 59, 0.2);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.special-service-card:hover {
  border-color: var(--primary-brand);
  transform: translateY(-5px);
}
.special-service-icon {
  margin-bottom: 20px;
  color: var(--primary-brand);
}
.special-service-card h4 {
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 1.25rem;
}
.special-service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.financing-section {
  padding: 100px 5%;
  background: #000;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.financing-section h3 {
  margin-bottom: 50px;
}
.partner-logos-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0;
}
.partner-logos-container::before,
.partner-logos-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.partner-logos-container::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}
.partner-logos-container::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}
.partner-logos-scroll {
  display: flex;
  width: max-content;
  animation: scroll-logos 50s linear infinite;
  align-items: center;
}
.partner-logos-track {
  display: flex;
  gap: 120px;
  padding-right: 120px;
  align-items: center;
  flex-shrink: 0;
}
.partner-logo-item img {
  height: 55px;
  width: auto;
  opacity: 0.8;
  transition: 0.3s;
  object-fit: contain;
}
.partner-logo-item:hover img {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
.middle-cta {
  padding: 100px 5%;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/hero.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.middle-cta h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.middle-cta p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.mini-faq-section {
  padding: 100px 5%;
  background: var(--bg-core);
}
.faq-grid {
  max-width: 900px;
  margin: 60px auto 0;
}
.faq-item-small {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.3s;
}
.faq-item-small:hover {
  border-color: var(--primary-brand);
}
.faq-trigger {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--primary-brand);
}
.faq-item-small.active .faq-icon {
  transform: rotate(45deg);
}
.faq-content {
  max-height: 0;
  padding: 0 32px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1); 
  opacity: 0;
  overflow: hidden;
}
.faq-item-small.active .faq-content {
  max-height: 1000px; 
  padding-top: 10px;
  padding-bottom: 40px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}
.faq-content p {
  margin: 0;
}
.reviews-section {
  padding: 100px 5%;
  background: radial-gradient(circle at center, #18181b, #09090b);
  border-top: 1px solid var(--border-light);
}
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .dealer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .dealer-grid {
    grid-template-columns: 1fr;
  }
}
.dealer-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background-color: var(--bg-surface);
  aspect-ratio: 2 / 3;
}
.dealer-card img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.dealer-card img.main-img {
  object-fit: contain;
  padding: 30px;
  filter: grayscale(1) invert(1) brightness(1.5);
  mix-blend-mode: screen;
}
.dealer-card img.hover-img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.dealer-card:hover img.hover-img {
  opacity: 1;
  transform: scale(1.05);
}
.dealer-card:hover img.main-img {
  opacity: 0;
}
.dealer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 45%, transparent 100%);
  color: var(--text-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.dealer-card:hover .dealer-info {
  transform: translateY(0);
  opacity: 1;
}
.dealer-title {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
}
.dealer-desc {
  font-size: 0.85rem;
  color: #e4e4e7;
  line-height: 1.5;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 15px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(220, 38, 38, 0.4);
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-question:after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-brand);
  transition: transform 0.3s ease;
}
.faq-question.active {
  color: var(--primary-brand);
}
.faq-question.active:after {
  content: '-';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.active {
  padding-bottom: 25px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-brand);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
}
.review-stars {
  color: #fbbf24;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.review-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
  flex-grow: 1;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}
.review-name {
  color: var(--text-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.review-date {
  color: #52525b;
  font-size: 0.85rem;
  font-weight: 500;
}
.reviews-section {
  background: var(--bg-core);
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-brand);
  margin-bottom: 16px;
}
.reviews-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.reviews-subheading {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.reviews-rating-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 10px 22px;
}
.reviews-stars-overall .star-icon {
  color: #fbbf24;
  font-size: 1.1rem;
}
.reviews-overall-score {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
}
.reviews-platform {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reviews-carousel-wrapper {
  position: relative;
  margin-bottom: 60px;
}
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card.featured {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.review-card.featured::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(220,38,38,0.08);
  line-height: 1;
  pointer-events: none;
}
.review-card.featured:hover {
  transform: translateY(-6px);
  border-color: rgba(220,38,38,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.1);
}
.review-card-inner { position: relative; z-index: 1; }
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c1a1a, #4a0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.review-stars span {
  color: #fbbf24;
  font-size: 0.85rem;
}
.google-badge {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: var(--primary-brand);
  border-color: var(--primary-brand);
  color: #fff;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--primary-brand);
  width: 24px;
  border-radius: 4px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220,38,38,0.2);
}
.testimonial-stars {
  margin-bottom: 14px;
}
.testimonial-stars span {
  color: #fbbf24;
  font-size: 0.9rem;
}
.testimonial-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c1a1a, #4a0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 3px;
}
.testimonial-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.reviews-cta {
  text-align: center;
}
@media (max-width: 1024px) {
  .reviews-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-carousel .review-card.featured:last-child {
    display: none;
  }
}
@media (max-width: 680px) {
  .reviews-section {
    padding: 70px 5% 60px;
  }
  .reviews-carousel {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .reviews-carousel .review-card.featured:not(:first-child) {
    display: none;
  }
  .carousel-controls { display: flex; }
}
.ts-section {
  position: relative;
  padding: 100px 5% 80px;
  background: var(--bg-core);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}
.ts-bg-glow {
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(220,38,38,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.ts-header {
  position: relative; z-index: 1;
  text-align: center; margin-bottom: 56px;
}
.ts-eyebrow {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary-brand); margin-bottom: 14px;
}
.ts-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900;
  color: var(--text-light); text-transform: uppercase;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px;
}
.ts-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.ts-rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-light);
  border-radius: 50px; padding: 10px 20px;
}
.ts-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.ts-score { font-weight: 800; color: var(--text-light); font-size: 1rem; }
.ts-platform { font-size: 0.85rem; color: var(--text-muted); }
.ts-slider {
  position: relative; z-index: 1;
  overflow: hidden; border-radius: 20px;
  margin-bottom: 36px; touch-action: pan-y;
}
.ts-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ts-page {
  min-width: 100%; display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 20px 2px 20px; align-items: stretch;
}
.ts-card {
  background: rgba(24,24,27,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 36px 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, box-shadow 0.35s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  text-decoration: none; color: inherit;
}
.ts-card::before {
  content: '\201C'; position: absolute; top: -8px; left: 16px;
  font-size: 110px; font-family: Georgia, serif;
  color: rgba(220,38,38,0.06); line-height: 1; pointer-events: none;
}
.ts-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220,38,38,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,38,38,0.1);
}
.ts-card-quote { font-size: 2.2rem; color: var(--primary-brand); line-height: 1; margin-bottom: 16px; opacity: 0.6; }
.ts-card-text {
  font-size: 0.97rem; line-height: 1.75; color: #b4b4bb;
  flex-grow: 1; margin: 0 0 28px; font-style: italic; quotes: none; position: relative; z-index: 1;
}
.ts-card-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px; position: relative; z-index: 1;
}
.ts-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.ts-author-info { flex: 1; }
.ts-author-name {
  font-weight: 700; font-size: 0.9rem; color: var(--text-light);
  margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.ts-author-stars { color: #fbbf24; font-size: 0.75rem; letter-spacing: 1px; }
.ts-google-badge {
  width: 30px; height: 30px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ts-card-cta {
  background: linear-gradient(145deg, rgba(24,24,27,0.95), rgba(12,12,14,0.98));
  border: 1px solid rgba(220,38,38,0.2); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 8px;
  padding: 40px 28px; cursor: pointer; text-decoration: none;
  color: inherit; position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.ts-card-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(220,38,38,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}
.ts-card-cta:hover { border-color: rgba(220,38,38,0.5); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(220,38,38,0.12); }
.ts-card-cta:hover::before { opacity: 1; }
.ts-cta-google-icon {
  width: 72px; height: 72px; background: rgba(255,255,255,0.05);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px;
}
.ts-cta-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.ts-cta-label { font-size: 1.15rem; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.ts-cta-sublabel { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.ts-cta-arrow { font-size: 1.5rem; color: var(--primary-brand); display: block; transition: transform 0.3s; margin-top: 4px; }
.ts-card-cta:hover .ts-cta-arrow { transform: translateX(6px); }
.ts-controls { display: flex; align-items: center; justify-content: center; gap: 20px; position: relative; z-index: 1; }
.ts-nav-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease; flex-shrink: 0;
}
.ts-nav-btn:hover { background: var(--primary-brand); border-color: var(--primary-brand); color: #fff; box-shadow: 0 0 20px rgba(220,38,38,0.35); transform: scale(1.08); }
.ts-dots { display: flex; gap: 8px; align-items: center; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.ts-dot.active { background: var(--primary-brand); width: 28px; border-radius: 4px; box-shadow: 0 0 10px rgba(220,38,38,0.4); }
@media (max-width: 1024px) {
  .ts-page { grid-template-columns: repeat(2, 1fr); }
  .ts-page > .ts-card:nth-child(3):not(.ts-card-cta) { display: none; }
}
@media (max-width: 640px) {
  .ts-section { padding: 70px 4% 60px; }
  .ts-page { grid-template-columns: 1fr; gap: 16px; }
  .ts-page > .ts-card:nth-child(n+2):not(.ts-card-cta) { display: none; }
  .ts-title { font-size: 2rem; }
}
@media (max-width: 1024px) {
  .social-cta-section {
    padding: 10px 5% !important;
  }
  .social-header-container {
    margin-bottom: 0 !important;
  }
  .social-title {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }
  .social-icons-row {
    margin-bottom: 10px !important;
    gap: 10px !important;
  }
  .social-icon-box {
    width: 38px !important;
    height: 38px !important;
  }
  .social-main-display {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    justify-content: flex-start !important;
  }
  .bg-text-outline {
    display: block !important;
    font-size: 14vw !important; 
    top: 45% !important;
    opacity: 0.15 !important;
    letter-spacing: 2px !important;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3) !important;
  }
  .social-car-wrapper {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }
  .social-car-model {
    width: 80% !important; 
  }
  .social-cta-btn-wrapper .btn-solid-red {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }
}

/* ===== FINANCING PAGE STYLES ===== */
.financing-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.financing-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.financing-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.financing-tab.active {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #991b1b 100%);
  color: white;
  border-color: var(--primary-brand);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.35);
}
.financing-panel {
  display: none;
  animation: financingFadeIn 0.5s ease forwards;
}
.financing-panel.active {
  display: block;
}
@keyframes financingFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.financing-location-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
}
.financing-location-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.financing-location-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.financing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.financing-card {
  background: var(--bg-core);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.financing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-brand), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.financing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(220, 38, 38, 0.08);
}
.financing-card:hover::before {
  opacity: 1;
}
.financing-card-coming-soon {
  cursor: default;
  opacity: 0.7;
}
.financing-card-coming-soon:hover {
  transform: none;
  border-color: var(--border-light);
  box-shadow: none;
  opacity: 0.75;
}
.financing-card-logo {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.financing-card-logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}
.financing-card:hover .financing-card-logo img {
  transform: scale(1.08);
}
.financing-card-body {
  padding: 0 30px 24px;
  flex-grow: 1;
}
.financing-card-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.financing-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.financing-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.financing-card-body ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.financing-card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-brand);
  flex-shrink: 0;
}
.financing-card-cta {
  padding: 18px 30px;
  background: rgba(220, 38, 38, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-brand);
  transition: all 0.3s ease;
}
.financing-card:hover .financing-card-cta {
  background: rgba(220, 38, 38, 0.15);
  color: #ef4444;
}
.financing-card:hover .financing-card-cta svg {
  transform: translateX(5px);
}
.financing-card-cta svg {
  transition: transform 0.3s ease;
}
.financing-card-cta-soon {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}
.financing-card-coming-soon:hover .financing-card-cta-soon {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

/* Financing page responsive */
@media (max-width: 768px) {
  .financing-tabs {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }
  .financing-tab {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  .financing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .financing-card-logo {
    padding: 24px 24px 16px;
  }
  .financing-card-body {
    padding: 0 24px 20px;
  }
  .financing-card-cta {
    padding: 16px 24px;
  }
  .financing-location-header {
    padding: 20px 16px;
    margin-bottom: 28px;
  }
  .financing-location-header h3 {
    font-size: 1.2rem;
  }
}

/* ===== SERVICE PAGE MOBILE FIX ===== */
/* Fix the 2-column grid (Service Expertise + Start Your Transformation) on mobile */
@media (max-width: 900px) {
  .content-section .container > div[style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}
@media (max-width: 768px) {
  .content-section .container > div[style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 16px 20px;
  }
  .lead-card {
    padding: 40px 24px !important;
  }
  .lead-card h3 {
    font-size: 1.6rem !important;
  }
  .lead-card p {
    font-size: 0.95rem !important;
  }
  .page-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  /* Fix CTA buttons overflowing on mobile */
  .btn-solid-red {
    white-space: normal !important;
    word-break: break-word;
    text-align: center;
    max-width: 100%;
  }
  .cta-wrapper,
  .lead-form-wrapper {
    width: 100%;
  }
  .lead-card .btn-submit {
    font-size: 1rem !important;
    padding: 18px 16px !important;
    white-space: normal;
    word-break: break-word;
  }
  /* Fix service page header button */
  .page-header .btn-solid-red {
    white-space: normal !important;
    padding: 14px 24px !important;
    font-size: 0.85rem !important;
  }
}

/* Custom Floating Financing Widget */
.financing-widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.financing-widget-trigger {
  background: var(--primary-brand);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.financing-widget-trigger:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.6), 0 0 15px rgba(220, 38, 38, 0.4);
}

.financing-widget-card {
  display: none;
  width: 320px;
  background: rgba(20, 20, 25, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  animation: widgetSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.financing-widget-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.financing-widget-close:hover {
  color: var(--text-light);
  transform: rotate(90deg);
}

.financing-widget-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.financing-widget-logo {
  height: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.3));
}

.financing-widget-title {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.financing-widget-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

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

.financing-widget-btn {
  flex-grow: 1;
  background: linear-gradient(135deg, var(--primary-brand) 0%, #991b1b 100%);
  color: var(--text-light);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.financing-widget-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.financing-widget-hamburger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.financing-widget-hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

/* Floating Sub-menu (Hamburger menu) */
.financing-widget-menu {
  display: none;
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 280px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10002;
  animation: widgetSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.financing-widget-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #d4d4d8;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.financing-widget-menu-item:hover {
  color: var(--text-light);
  background: var(--primary-blue);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.financing-widget-menu-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
}
