/* ===== Design Tokens ===== */
:root {
  /* Neutral */
  --black: #000000;
  --white: #ffffff;
  --gray-950: #0a0a0a;
  --gray-900: #111111;
  --gray-850: #151515;
  --gray-800: #262626;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;

  /* Brand */
  --lime: #ccff00;
  --lime-5: rgba(204, 255, 0, 0.05);
  --lime-10: rgba(204, 255, 0, 0.1);
  --lime-30: rgba(204, 255, 0, 0.3);
  --white-5: rgba(255, 255, 255, 0.05);
  --dark-80: rgba(10, 10, 10, 0.8);
  --dark-90: rgba(10, 10, 10, 0);

  /* Breakpoint */
  --bp-desktop: 920px;
}

/* ===== Popup ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: popup-fade-in 0.25s ease;
}

@keyframes popup-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-modal {
  background: var(--white);
  border-radius: 1rem;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  animation: popup-slide-up 0.3s ease;
}

@keyframes popup-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.popup-content {
  padding: 2rem 1.5rem 1.5rem;
  color: #1f2937;
  text-align: center;
}

.popup-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #111;
}

.popup-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0.75rem;
}

.popup-content .popup-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.25rem;
}

.popup-content .popup-list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.popup-content .popup-list li {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.popup-content .popup-list li::before {
  content: "• ";
  color: #6b7280;
}

.popup-content .popup-list li strong {
  color: #111;
}

.popup-content .popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #374151;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.popup-content .popup-cta:hover {
  background: #1f2937;
}

.popup-content .popup-note {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.popup-actions {
  display: flex;
  border-top: 1px solid #e5e7eb;
}

.popup-action-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.popup-action-btn:hover {
  background: #f3f4f6;
  color: #111;
}

.popup-action-btn--primary {
  font-weight: 600;
  color: #374151;
  border-left: 1px solid #e5e7eb;
}

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--gray-950);
  color: var(--white);
  font-family: "Pretendard Variable", "Pretendard", -apple-system,
    BlinkMacSystemFont, system-ui, "Helvetica Neue", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

/* ===== Layout ===== */
.section-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section,
.section--alt {
  padding: 2.5rem 0;
  scroll-margin-top: 4rem;
}

.section--alt {
  background-color: var(--black);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--dark-80);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-800);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 2rem;
}

.desktop-only {
  display: none !important;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-800);
  height: calc(100dvh - 4rem);
  background-color: var(--dark-80);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__purchase-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.mobile-menu__naver-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: #03C75A;
  border-radius: 0.25rem;
}

.mobile-menu__promo-chip {
  flex-shrink: 0;
  padding: 0.1875rem 0.625rem;
  background: rgba(255, 107, 107, 0.15);
  color: #FF6B6B;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  line-height: 1.4;
}

.mobile-menu .nav-link {
  color: var(--white);
  font-weight: 600;
}

.hamburger {
  display: flex !important;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: var(--white);
}

/* ===== Nav / Buttons ===== */
.nav-link {
  font-size: 0.9375rem;
  color: var(--gray-300);
  transition: color 0.2s;
}

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

.nav-link--cta {
  color: var(--lime) !important;
  font-weight: 700;
}

.nav-link--cta:hover {
  opacity: 0.85;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--lime);
  color: var(--black);
  font-weight: 600;
  border-radius: 9999px;
  font-size: 0.9375rem;
  transition: filter 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

/* ===== Card ===== */
.card {
  background-color: var(--gray-850);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  padding: 1rem;
}

.card--highlight {
  border-color: var(--lime-30);
  position: relative;
  overflow: hidden;
}

.card--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--lime);
}

/* ===== Tag / Badge ===== */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--lime-10);
  color: var(--lime);
}

.tag--lg {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
}

/* ===== Pill Card ===== */
.pill-card {
  background-color: var(--gray-850);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pill-card__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: var(--gray-900);
}

.pill-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-card--link {
  transition: border-color 0.2s;
  cursor: pointer;
}

.pill-card--link:hover {
  border-color: var(--lime-30);
}

.pill-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pill-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.pill-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ===== Feature Carousel ===== */
.feature-carousel-wrap {
  position: relative;
}

.feature-carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: scroll;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}

.feature-carousel::-webkit-scrollbar {
  display: none;
}

.feature-carousel.no-smooth {
  scroll-behavior: auto !important;
}

.feature-carousel:active {
  cursor: grabbing;
}

.feature-carousel__item {
  flex: 0 0 75%;
}

.feature-carousel__item.card {
  padding-bottom: 1.25rem;
}

.feature-carousel__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

.feature-carousel-btn {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: none;
  background: var(--lime);
  color: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 0.2s;
}

.feature-carousel-btn:hover {
  filter: brightness(1.1);
}

.feature-carousel-btn--prev {
  left: -0.5rem;
}

.feature-carousel-btn--next {
  right: -0.5rem;
}

.feature-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
}

.feature-carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--gray-600);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.feature-carousel-dot.is-active {
  background-color: var(--lime);
  transform: scale(1.25);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.8),
    var(--dark-90),
    rgba(10, 10, 10, 0.8)
  );
}

.hero__bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.hero__kc {
  width: 90px;
}

.hero__logo {
  width: min(400px, 72vw);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ===== Section Heading ===== */
.section-heading--lg {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.375;
}

.section-subtitle {
  color: var(--gray-300);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.section-subtitle br {
  display: inline;
}

/* ===== Spec Table ===== */
.spec-row {
  display: flex;
  border-bottom: 1px solid var(--gray-800);
  padding: 0.875rem 0;
  font-size: 0.9375rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  width: 40%;
  color: var(--gray-300);
  flex-shrink: 0;
}

.spec-value {
  color: var(--white);
  word-break: keep-all;
}

/* ===== Spec Collapse ===== */
.spec-collapse {
  position: relative;
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.spec-collapse.is-expanded {
  max-height: 2000px;
}

.spec-collapse__dim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  transition: opacity 0.3s;
}

.spec-collapse.is-expanded .spec-collapse__dim {
  opacity: 0;
  pointer-events: none;
}

.spec-collapse__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  background: var(--lime);
  color: var(--black);
  border: 1px solid var(--lime);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.spec-collapse__btn:hover {
  filter: brightness(1.1);
}

.spec-note {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}

.spec-collapse.is-expanded ~ .spec-note {
  opacity: 1;
  max-height: 4rem;
}

/* ===== Promo Chip ===== */
.promo-chip {
  display: inline-block;
  margin-top: 2.8rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  background: linear-gradient(135deg, #ccff00, #00e5ff);
  border-radius: 9999px;
  letter-spacing: 0.01em;
  animation: chip-pulse 2s ease-in-out infinite;
}

@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
}

/* ===== Compare Row ===== */
.compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  background: var(--gray-950);
  border: 1px solid var(--gray-800);
  border-radius: 1rem;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-800);
}

.compare-table thead th {
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 1.25rem 1.25rem;
  vertical-align: middle;
}

.compare-table__bss {
  border-bottom: 1px solid var(--gray-800);
}

.compare-table__other {
  color: var(--gray-300);
  border-left: 1px solid var(--gray-700);
}

.compare-table thead th.compare-table__other {
  vertical-align: middle;
}

.compare-table__plans td {
  padding: 1rem 1.25rem;
}

.compare-table__plans td:last-child {
  border-left: 1px solid var(--gray-700);
}

.compare-table th.compare-table__label,
.compare-table td.compare-table__label {
  text-align: left;
  color: var(--gray-300);
  font-size: 0.9375rem;
  white-space: nowrap;
  min-width: 160px;
}

.compare-table tbody td:last-child,
.compare-table tfoot td:last-child {
  border-left: 1px solid var(--gray-700);
}

.compare-table__total td {
  border-bottom: none;
  padding: 1.25rem;
  background: rgba(204, 255, 0, 0.04);
}

/* ===== Pricing Table ===== */
.pricing-table {
  width: 100%;
  min-width: 640px;
  font-size: 0.9375rem;
  table-layout: fixed;
}

.pricing-table thead tr {
  border-bottom: 1px solid var(--gray-800);
  color: var(--white);
}

.pricing-table th {
  padding: 1rem 0;
  font-weight: 500;
  text-align: center;
}

.pricing-table th:first-child {
  width: 28%;
  text-align: left;
  padding-left: 1.25rem;
}

.pricing-table td {
  padding: 1.25rem 0;
  text-align: center;
  color: var(--white);
}

.pricing-table td:first-child {
  text-align: left;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--white);
}


.recommend-chip {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background-color: var(--lime-10);
  color: var(--lime);
  vertical-align: middle;
  white-space: nowrap;
}

.pricing-table td:first-child {
  white-space: nowrap;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-800);
}

.pricing-table .plan-highlight {
  background-color: var(--lime-5);
}

.pricing-table .plan-highlight td:first-child {
  color: var(--lime);
}

.price-original {
  color: var(--gray-300);
  text-decoration: line-through;
  font-size: 0.8125rem;
}

.price-current {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.price-highlight {
  color: var(--lime);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ===== App Carousel ===== */
.app-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.app-carousel {
  display: flex;
  width: max-content;
  animation: app-scroll 30s linear infinite;
  --set-width: 50%;
}

.app-carousel__item {
  width: 130px;
  flex-shrink: 0;
  border-radius: 1rem;
  margin-right: 1rem;
}

@keyframes app-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(var(--set-width) * -1)); }
}

/* ===== Store Download Button ===== */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  min-width: 0;
  width: 100%;
  background-color: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: 0.75rem;
  transition: background-color 0.2s, border-color 0.2s;
}

.store-btn:hover {
  border-color: var(--gray-400);
  background-color: var(--gray-600);
}

.store-btn__icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.store-btn__label {
  font-size: 0.625rem;
  color: var(--gray-300);
  line-height: 1;
  letter-spacing: 0.02em;
}

.store-btn__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}

/* ===== Press Item ===== */
.press-item {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background-color: var(--white-5);
  transition: background-color 0.2s;
}

.press-item:hover {
  background-color: var(--gray-850);
}

.press-item__source {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.375rem;
}

.press-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
  word-break: keep-all;
}

.press-item:hover .press-item__title {
  color: var(--lime);
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  margin-bottom: 0.25rem;
  transition: background-color 0.3s;
}

.faq-item[open] {
  background-color: var(--gray-850);
}

.faq-item summary {
  padding: 1.125rem 1rem 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gray-300);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 1rem;
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.85;
  transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.25rem;
}

.faq-item[open].is-closing .faq-answer {
  grid-template-rows: 0fr;
  padding-bottom: 0;
}

.faq-item .faq-answer > div {
  overflow: hidden;
}

/* ===== Google Map ===== */
#map-container {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 1rem;
  overflow: hidden;
}

#map {
  width: 100%;
  height: 100%;
}

#map-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: max-content;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 9999px;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.35);
  padding: 4px;
}

#map-controls .map-control-btn {
  flex: none;
  border: none;
  background: transparent;
  color: #0f172a;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

#map-controls .map-control-btn:hover {
  background: rgba(15, 23, 42, 0.08);
}

#map-controls .map-control-btn.is-active {
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
}


.testride-map {
  width: 100%;
  height: 220px;
  border-radius: 0.75rem;
  overflow: hidden;
}


/* ===== Distance Info ===== */
.distance-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 0;
  font-family: "Pretendard", sans-serif;
  white-space: nowrap;
}

.distance-info__value {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.distance-info__time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
}

.distance-chip-overlay {
  position: absolute;
  transform: translateX(-50%);
  padding: 0.3125rem 0.75rem;
  background: #1a1a1a;
  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* ===== Guide Card ===== */
.guide-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.card.guide-card {
  padding: 0.75rem 1rem;
}

.guide-card--link {
  transition: border-color 0.2s, background-color 0.2s;
  cursor: pointer;
}

.guide-card--link:hover {
  border-color: var(--gray-600);
  background-color: var(--gray-800);
}

.guide-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.guide-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.guide-card__arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.guide-card--link:hover .guide-card__arrow {
  color: var(--lime);
  transform: translateX(2px);
}

.guide-video-card__embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.guide-location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, border-color 0.2s;
}

.guide-location-btn:hover {
  border-color: var(--gray-400);
  background-color: var(--gray-600);
}

/* ===== Guide Support Card ===== */
.guide-support-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-support-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.75rem 1.25rem;
  background-color: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s;
}

.guide-support-btn:hover {
  border-color: var(--gray-400);
  background-color: var(--gray-600);
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0 5rem;
  border-top: 1px solid var(--gray-800);
}

.footer-link {
  color: var(--gray-400);
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

/* ===== Mobile Purchase Floating Button ===== */
.purchase-float {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: var(--lime);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: filter 0.2s, transform 0.2s;
  white-space: nowrap;
}

.purchase-float:hover {
  filter: brightness(1.1);
}

@media (min-width: 920px) {
  .purchase-float {
    display: none;
  }
}

/* ===== Channel.io Floating Button ===== */
.contact-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: rgba(30, 30, 30, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--gray-700);
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-float:hover {
  border-color: var(--lime);
  box-shadow: 0 4px 24px rgba(204, 255, 0, 0.15);
  transform: translateY(-2px);
}

.contact-float svg {
  color: var(--lime);
  flex-shrink: 0;
}

/* ===== Utilities ===== */
.text-lime {
  color: var(--lime);
}

.text-sub {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.625;
}

.text-caption {
  color: var(--gray-300);
  font-size: 0.8125rem;
}

.text-note {
  color: var(--gray-300);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
}

/* ==========================================================
   Responsive — Desktop (min-width: 920px)
   ========================================================== */
@media (min-width: 920px) {
  /* Layout */
  .section-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section,
  .section--alt {
    padding: 8rem 0;
  }

  /* Header */
  .desktop-nav {
    display: flex !important;
  }

  .desktop-only {
    display: inline-flex !important;
  }

  .hamburger,
  .mobile-menu,
  .mobile-menu.is-open {
    display: none !important;
  }

  /* Card */
  .card {
    padding: 2rem;
  }

  /* Feature Carousel */
  .feature-carousel {
    gap: 1.5rem;
  }

  .feature-carousel__item {
    flex: 0 0 31%;
  }

  .feature-carousel__img {
    aspect-ratio: 1 / 1;
  }

  .feature-carousel-btn {
    display: flex;
  }

  .feature-carousel-btn--prev {
    left: -1.25rem;
  }

  .feature-carousel-btn--next {
    right: -1.25rem;
  }

  /* Pill Card */
  .pill-card__img-wrap {
    height: 250px;
  }

  .pill-card__body {
    padding: 1.5rem;
    gap: 0.5rem;
  }

  .pill-card__title {
    font-size: 1.375rem;
  }

  .pill-card__desc {
    font-size: 1.0625rem;
  }

  /* Hero */
  .hero__logo {
    width: 700px;
  }

  .hero__subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .hero__kc {
    width: 120px;
  }

  .hero__bottom {
    bottom: 4rem;
  }

  /* Section Heading */
  .section-heading--lg {
    font-size: 3.5rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  .section-subtitle br {
    display: inline;
  }

  /* Spec Table */
  .spec-row {
    font-size: 1rem;
  }

  .spec-label {
    width: 33.333%;
  }

  /* Pricing Table */
  .pricing-table {
    font-size: 1rem;
  }

  /* App Carousel */
  .app-carousel__item {
    width: 200px;
    border-radius: 1.5rem;
    margin-right: 2rem;
  }

  /* Store Button */
  .store-btn {
    padding: 0.75rem 1.75rem;
    width: auto;
    min-width: 11rem;
  }

  .store-btn__name {
    font-size: 1.125rem;
  }

  /* Map */
  #map-container {
    height: 600px;
  }

  #map-controls .map-control-btn {
    font-size: 15px;
    padding: 10px 14px;
  }

  /* FAQ */
  .faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1.1875rem;
  }

  .faq-item .faq-answer {
    padding: 0 1.5rem;
    font-size: 1rem;
  }

  /* Guide Card */
  .guide-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .card.guide-card {
    padding: 1rem;
  }

  .guide-card__icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
  }

  /* Guide Support */
  .guide-support-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .guide-support-card__actions {
    flex-direction: row;
    flex-shrink: 0;
  }

  /* Contact Float */
  .contact-float {
    display: flex;
  }

  /* Footer */
  .footer {
    padding: 3rem 0;
  }

}
