/* קלין קאר — static build from Base44 design tokens */

:root {
  --obsidian: #050505;
  --carbon: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --alabaster: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.55);
  --muted2: rgba(245, 245, 245, 0.4);
  --border-light: rgba(255, 255, 255, 0.08);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", system-ui, sans-serif;
  background: var(--obsidian);
  color: var(--alabaster);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.font-heebo {
  font-family: "Heebo", system-ui, sans-serif;
}

.font-medium {
  font-weight: 500;
}

.text-gold {
  color: var(--gold);
}

.text-alabaster {
  color: var(--alabaster);
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 2000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container-wide {
  width: min(80rem, 100% - 3rem);
  margin-inline: auto;
}

.container-narrow {
  width: min(48rem, 100% - 3rem);
  margin-inline: auto;
}

.relative-z {
  position: relative;
  z-index: 1;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  width: auto;
  height: 2.5rem;
  max-width: 7.5rem;
  border-radius: 0.5rem;
  object-fit: contain;
  /* Black logo on light pad — reads on transparent / dark header */
  background: rgba(248, 246, 240, 0.94);
  padding: 0.2rem 0.45rem;
  box-sizing: content-box;
}

.header-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--alabaster);
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-header-outline {
  padding: 0.625rem 1.25rem;
  min-height: 44px;
  font-size: 0.875rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-header-outline:hover {
  background: var(--gold);
  color: #000;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=90&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grad-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    var(--obsidian) 100%
  );
}

.hero-grad-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.4) 0%,
    transparent 45%,
    transparent 55%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.gold-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.5),
    transparent
  );
}

.gold-line-hero-bottom {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 56rem;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-headline {
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 35%,
    #fff6d4 50%,
    var(--gold-light) 65%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.hero-sub {
  margin: 0 auto 2.5rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: rgba(245, 245, 245, 0.7);
  max-width: 36rem;
  line-height: 1.65;
}

.hero-cta .btn-hero {
  min-height: 56px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.btn-hero:hover {
  background: var(--gold-light);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.45);
}

.btn-hero .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.pulse-gold {
  animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.25);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.9s ease forwards;
  opacity: 0;
}

.hero-badge.fade-in-up {
  animation-delay: 0.05s;
}

.hero-headline.fade-in-up {
  animation-delay: 0.12s;
}

.hero-sub.fade-in-up {
  animation-delay: 0.2s;
}

.hero-cta.fade-in-up {
  animation-delay: 0.28s;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.45;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* —— Sections shared —— */
.section {
  position: relative;
  overflow: hidden;
}

.section-head {
  margin-bottom: 4rem;
}

.section-head.center {
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--alabaster);
}

.section-title-lg {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.section-lead {
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.5);
  max-width: 28rem;
}

.section-lead.muted {
  color: rgba(245, 245, 245, 0.4);
}

.gold-line-section {
  position: absolute;
  top: 0;
  inset-inline: 0;
}

.gold-line-section-bottom {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
}

/* —— Values —— */
.values {
  padding: 6rem 0;
  background: #0a0a0a;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(201, 168, 76, 0.25);
}

.value-card {
  padding: 2rem;
}

.value-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.value-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.value-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* —— Packages —— */
.packages {
  padding: 7rem 0;
  background: var(--obsidian);
}

.packages-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(
    circle at 50% 50%,
    #c9a84c 1px,
    transparent 1px
  );
  background-size: 48px 48px;
  pointer-events: none;
}

.packages-head .section-lead {
  max-width: 22rem;
}

.package-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}

.package-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
}

.package-featured {
  position: relative;
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.12);
}

.popular-pill {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}

.package-emoji {
  font-size: 1.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.package-tier {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.package-label {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--gold);
}

.package-rule {
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 1.5rem 0;
}

.package-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
}

.bullet-dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.btn-package-gold {
  width: 100%;
  min-height: 48px;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.btn-package-gold:hover {
  background: var(--gold-light);
}

.btn-package-outline {
  width: 100%;
  min-height: 48px;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.btn-package-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* —— How —— */
.how {
  padding: 7rem 0;
  background: #0d0d0d;
}

.how-wrap {
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    top: 4rem;
    inset-inline: 5%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(201, 168, 76, 0.35) 15%,
      rgba(201, 168, 76, 0.35) 85%,
      transparent
    );
    z-index: 0;
  }
}

.steps-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step-card {
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-glow {
  position: absolute;
  inset: -0.5rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.15);
  transition: transform 0.5s ease;
}

.step-card:hover .step-glow {
  transform: scale(1.35);
}

.step-icon-ring {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s ease;
}

.step-card:hover .step-icon-ring {
  background: rgba(201, 168, 76, 0.1);
}

.step-svg {
  width: 2rem;
  height: 2rem;
}

.step-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-desc {
  margin: 0 auto;
  max-width: 22ch;
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.65;
}

/* —— Testimonials —— */
.testimonials {
  padding: 7rem 0;
  background: #080808;
}

.testimonials-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.04);
  filter: blur(60px);
  pointer-events: none;
}

.card-rounded {
  border-radius: 1.5rem;
}

.testimonial-panels {
  margin-bottom: 2rem;
}

.testimonial-main {
  position: relative;
  padding: 2rem 1.75rem 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-main {
    padding: 3rem 3.5rem;
  }
}

.testimonial-main[hidden] {
  display: none;
}

.quote-deco {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: clamp(4rem, 14vw, 8.75rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(201, 168, 76, 0.1);
  pointer-events: none;
  user-select: none;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.testimonial-quote {
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.85);
  max-width: 48rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-initials {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.author-text {
  text-align: right;
}

.author-name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.author-loc {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(201, 168, 76, 0.7);
}

.testimonial-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.testimonial-tab {
  text-align: right;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}

.testimonial-tab:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.testimonial-tab.is-active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.tab-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tab-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-tab.is-active .tab-avatar {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.tab-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.5);
}

.testimonial-tab.is-active .tab-name {
  color: var(--alabaster);
}

.tab-loc {
  margin: 0;
  font-size: 0.625rem;
  color: rgba(245, 245, 245, 0.3);
}

.testimonial-tab.is-active .tab-loc {
  color: rgba(201, 168, 76, 0.8);
}

.tab-stars {
  font-size: 0.45rem;
  letter-spacing: 0.05em;
  color: rgba(201, 168, 76, 0.35);
}

.testimonial-tab.is-active .tab-stars {
  color: var(--gold);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
}

.stat-num {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.45);
}

/* —— CTA —— */
.cta-final {
  position: relative;
  padding: 8rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: #111 url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=85&auto=format&fit=crop")
    center / cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(5, 5, 5, 0.9) 100%
  );
}

.cta-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-decor::before,
.cta-decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
}

.cta-decor::before {
  width: 8px;
  height: 8px;
  top: 3rem;
  right: 3rem;
}

.cta-decor::after {
  width: 4px;
  height: 4px;
  bottom: 4rem;
  left: 4rem;
  background: rgba(201, 168, 76, 0.5);
}

.gold-line-cta-top {
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 2;
}

.gold-line-cta-bottom {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 2;
}

.cta-content {
  max-width: 56rem;
}

.cta-badge {
  margin-bottom: 2rem;
}

.pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

.cta-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--alabaster);
}

.cta-lead {
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: rgba(245, 245, 245, 0.6);
  max-width: 28rem;
  line-height: 1.65;
}

.btn-cta {
  min-height: 64px;
  padding: 1.1rem 2.75rem;
  font-size: 1.15rem;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.35);
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: scale(1.03);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.45);
}

.cta-foot {
  margin: 2rem 0 0;
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.3);
}

/* —— WhatsApp float —— */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
}

.wa-float-inner {
  position: relative;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.wa-float:hover .wa-float-inner {
  transform: scale(1.1);
  background: var(--gold-light);
}

.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.35);
  animation: radar 2.4s ease-out infinite;
  pointer-events: none;
}

.radar-ring.r2 {
  animation-delay: 0.75s;
}

@keyframes radar {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.wa-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--carbon);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--alabaster);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

@media (min-width: 768px) {
  .wa-float {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
