/* ladingpage/assets/css/style.css — PROFESSIONAL REBUILD */

:root {
  --gold: #C9A227;
  --gold-l: #F0D060;
  --gold-d: #8B6914;
  --gold-g: rgba(201, 162, 39, 0.15);
  --red: #8B1A1A;
  --red-b: #CC2200;
  --red-g: rgba(139, 26, 26, 0.25);
  --bg: #07070c;
  --bg2: #0e0e15;
  --bg3: #131319;
  --bg4: #1a1a22;
  --border: rgba(201, 162, 39, 0.18);
  --border2: rgba(201, 162, 39, 0.08);
  --text: #f0f0f5;
  --text2: #9090a2;
  --text3: #52525f;
  --green: #00d084;
  --blue: #4a9eff;
  --purple: #9b59b6;
  --diamond: #a78bfa;
  --font-title: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-d);
  border-radius: 3px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% -5%, rgba(139, 26, 26, 0.2), transparent 50%),
    radial-gradient(ellipse 45% 35% at 15% 80%, rgba(201, 162, 39, 0.05), transparent 45%);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: #fff;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  background: rgba(7, 7, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.logo-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text3);
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.nav-link:hover {
  color: #fff;
}

.nav-cta {
  font-size: 12.5px;
  padding: 9px 22px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-l);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

nav.scrolled {
  background: rgba(7, 7, 12, 0.96);
  border-bottom-color: rgba(201, 162, 39, 0.1);
}

/* Form Feedback */
.form-feedback {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.form-feedback.success {
  display: block;
  background: rgba(0, 208, 132, 0.1);
  border: 1px solid rgba(0, 208, 132, 0.3);
  color: var(--green);
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
}

/* Showcase: photo left + console right — single unified panel */
.hero-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: #0a0b10;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  margin-bottom: 56px;
}

.hero-showcase-left {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.hero-showcase-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.hero-showcase-overlay strong {
  display: block;
  font-family: var(--font-title);
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}

.hero-showcase-overlay span {
  font-size: 11px;
  color: var(--gold-l);
}

.hero-showcase-right {
  display: flex;
  flex-direction: column;
}

/* JVM Console */
.jvm-console {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: #8b95b0;
  text-align: left;
}

.jvm-console-header {
  background: #0c0d14;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.jvm-console-dots {
  display: flex;
  gap: 6px;
}

.jvm-console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.jvm-console-dot.red {
  background: #ef4444;
}

.jvm-console-dot.yellow {
  background: #f59e0b;
}

.jvm-console-dot.green {
  background: #10b981;
}

.jvm-console-title {
  color: var(--text3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.jvm-console-body {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
}

.jvm-log-row {
  margin-bottom: 5px;
  white-space: pre-wrap;
}

.jvm-log-time {
  color: #5560a0;
  margin-right: 8px;
}

.jvm-log-level {
  font-weight: 700;
  margin-right: 8px;
}

.jvm-log-level.info {
  color: #10b981;
}

.jvm-log-level.warn {
  color: #f59e0b;
}

.jvm-log-msg {
  color: #c8d0e0;
}

.jvm-console-stats {
  background: #090a10;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-size: 10px;
}

.jvm-stat-item span {
  color: var(--text3);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.06em;
}

.jvm-stat-item strong {
  color: #fff;
  font-size: 12px;
}

/* Hero Copy */
.hero-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero-eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--gold-l);
}

.hero-desc {
  font-size: 15px;
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border2);
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  opacity: 0.85;
}

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 14px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SOLUTIONS ===== */
.solutions {
  padding: 100px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 32px 24px;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.solution-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ===== METHODOLOGY (4 phases) ===== */
.methodology {
  padding: 100px 0;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.phase-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}

.phase-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.phase-number {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.phase-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.phase-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ===== PRICING / INVEST ===== */
.pricing {
  padding: 100px 0;
}

.invest-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.invest-left {
  padding: 48px 40px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invest-price {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.invest-period {
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.invest-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.invest-right {
  padding: 48px 40px;
  border-left: 1px solid var(--border2);
  display: flex;
  align-items: center;
}

.invest-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invest-right li {
  font-size: 13.5px;
  color: var(--text2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.invest-right li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ===== CONSULTING ===== */
.consulting {
  padding: 100px 0;
}

.consulting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.consulting-info h3 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  margin-top: 16px;
}

.consulting-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
}

.consulting-form-container {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 36px;
}

.form-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 12.5px;
  color: var(--text3);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group > label,
.form-group > legend {
  display: block;
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text2);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.form-control::placeholder {
  color: var(--text3);
}

select.form-control {
  cursor: pointer;
  color-scheme: dark;
}

select.form-control option {
  background: var(--bg2);
  color: var(--text);
}

textarea.form-control {
  min-height: 70px;
}

.form-feedback {
  min-height: 1em;
}

.issues-fieldset {
  min-width: 0;
  border: 0;
}

.form-hint {
  margin: -2px 0 10px;
  color: var(--text3);
  font-size: 11.5px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: var(--bg);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text2);
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--border);
  color: var(--text);
}

.checkbox-label:has(input:checked) {
  border-color: rgba(201, 162, 39, 0.55);
  background: var(--gold-g);
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-custom {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input:focus-visible + .checkbox-custom {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.issues-fieldset.has-error .checkbox-label {
  border-color: rgba(239, 68, 68, 0.55);
}

.form-privacy {
  margin-top: 12px;
  color: var(--text3);
  font-size: 10.5px;
  line-height: 1.5;
  text-align: center;
}

.form-privacy a {
  color: var(--text2);
  text-underline-offset: 2px;
}

.form-privacy a:hover {
  color: var(--gold-l);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold-l);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid var(--border2);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.author-tier {
  font-size: 11px;
  margin-top: 1px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(201, 162, 39, 0.2);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: left;
  color: #fff;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-l);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-arrow {
  font-size: 10px;
  color: var(--text3);
  transition: var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== PWA BANNER ===== */
.pwa-banner {
  padding: 60px 0;
}

.pwa-inner {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pwa-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.pwa-info p {
  font-size: 13px;
  color: var(--text2);
  max-width: 440px;
}

.pwa-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.pwa-btn {
  font-size: 12.5px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border2);
  color: var(--text2);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.pwa-btn:hover {
  border-color: var(--gold);
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border2);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text3);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text3);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-l);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-showcase-left {
    min-height: 260px;
    max-height: 320px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .invest-card {
    grid-template-columns: 1fr;
  }

  .invest-right {
    border-left: none;
    border-top: 1px solid var(--border2);
  }

  .pwa-inner {
    flex-direction: column;
    text-align: center;
  }

  .pwa-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .phases-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 20px;
  }

  .hero-actions .btn-primary.btn-large {
    width: 100%;
    justify-content: center;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .consulting-form-container {
    padding: 24px;
  }

  .pwa-inner {
    padding: 24px;
  }

  .invest-left,
  .invest-right {
    padding: 32px 24px;
  }
}

/* ===== NEW STYLES AND HIGHLIGHTS ===== */
.btn-large {
  padding: 16px 36px !important;
  font-size: 15px !important;
  font-weight: 855 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Pricing Promo */
.invest-price-promo {
  text-align: center;
  margin-bottom: 20px;
}

.price-old {
  display: block;
  font-size: 17.5px;
  color: var(--red);
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 2px;
}

.price-by {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-new {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 900;
  color: var(--gold-l);
  line-height: 1.1;
  text-shadow: 0 0 25px rgba(240, 208, 96, 0.25);
}

/* Floating CTA Popup */
.floating-cta-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  /* Verde WhatsApp */
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  animation: pulse-ring 2.2s infinite;
}

.floating-cta-btn:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.floating-cta-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta-btn svg {
  fill: #fff;
  /* Ícone branco */
}


@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7), 0 10px 30px rgba(201, 162, 39, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(201, 162, 39, 0), 0 10px 30px rgba(201, 162, 39, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0), 0 10px 30px rgba(201, 162, 39, 0.4);
  }
}

@media (max-width: 768px) {
  .floating-cta-btn {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    justify-content: center;
    padding: 15px 18px calc(15px + env(safe-area-inset-bottom));
    border-radius: 0;
    font-size: 11px;
  }
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.testimonials-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.testimonials-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonials-slider-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  box-sizing: border-box;
}

/* Side navigation buttons */
.testimonials-slider-wrapper .slider-btn.side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(12, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.testimonials-slider-wrapper .slider-btn.side-btn:hover:not([disabled]) {
  background: var(--border2);
  border-color: var(--gold);
  color: var(--gold-l);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.2);
}
.testimonials-slider-wrapper .slider-btn.side-btn:active:not([disabled]) {
  transform: translateY(-50%) scale(0.95);
}

.testimonials-slider-wrapper .slider-btn.prev-btn.side-btn {
  left: -24px;
}
.testimonials-slider-wrapper .slider-btn.next-btn.side-btn {
  right: -24px;
}

/* Smooth fade out when disabled */
.testimonials-slider-wrapper .slider-btn.side-btn[disabled] {
  opacity: 0;
  pointer-events: none;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .testimonials-slider-track .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
  .testimonials-slider-wrapper .slider-btn.prev-btn.side-btn {
    left: -12px;
  }
  .testimonials-slider-wrapper .slider-btn.next-btn.side-btn {
    right: -12px;
  }
}
@media (max-width: 600px) {
  .testimonials-slider-track {
    gap: 16px;
  }
  .testimonials-slider-track .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonials-slider-wrapper .slider-btn.side-btn {
    display: none !important;
  }
}
