/* Stylesheet for Trader Million Premium Landing Page */

/* --- Design Tokens --- */
:root {
  --bg-color: #050607;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --accent-color: #39FF14;
  --accent-glow: rgba(57, 255, 20, 0.45);
  --accent-dim: rgba(57, 255, 20, 0.1);
  --accent-border: rgba(57, 255, 20, 0.25);
  
  --telegram-color: #0088cc;
  --telegram-glow: rgba(0, 136, 204, 0.38);
  --telegram-border: rgba(104, 207, 255, 0.45);
  
  --whatsapp-color: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.38);
  --whatsapp-border: rgba(37, 211, 102, 0.45);

  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.45);
  --text-alert: #ff5c5c;
  
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Global Reset & Setup --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Ambient Background Glows --- */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 860px;
  background: radial-gradient(ellipse 62% 46% at 50% 0%, rgba(57, 255, 20, 0.16), transparent 70%);
  pointer-events: none;
  z-index: -10;
}

.ambient-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1200px;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -9;
}

/* --- Animations --- */
@keyframes bonusMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
  }
  50% {
    transform: scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 0 35px rgba(0, 136, 204, 0.45);
  }
}

@keyframes ctaPulseWsp {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
  }
  50% {
    transform: scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.45);
  }
}

@keyframes shimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

@keyframes videoRingPulse {
  0%, 100% {
    box-shadow: 0 0 0 0px rgba(57, 255, 20, 0.3), 0 0 0 6px rgba(57, 255, 20, 0.1), 0 24px 70px rgba(0,0,0,0.65);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.4), 0 0 0 12px rgba(57, 255, 20, 0.15), 0 24px 70px rgba(0,0,0,0.65);
  }
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Header --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

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

.brand-logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  object-cover: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-top: 0.125rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-color);
  background-color: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 9999px;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 14px var(--accent-color);
}

/* --- Hero Section --- */
.hero {
  padding: 2.5rem 0;
  text-align: center;
}

.badge-intro {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.badge-intro svg {
  color: var(--accent-color);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.375rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.02em;
  max-width: 580px;
  margin: 0 auto 1.25rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5.375rem;
  }
}

.text-gradient {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(to right, var(--accent-color), #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 19px;
  }
}

/* --- VSL Video Block --- */
.vsl-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.vsl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.vsl-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.video-btn {
  background: #000000;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  width: 230px;
  height: 230px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease;
  position: relative;
  animation: videoRingPulse 3s infinite ease-in-out;
}

@media (min-width: 640px) {
  .video-btn {
    width: 260px;
    height: 260px;
  }
}

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

.video-btn video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.video-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  padding-bottom: 1.5rem;
}

.audio-prompt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #050607;
  background-color: var(--accent-color);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.audio-prompt-badge svg {
  width: 1rem;
  height: 1rem;
}

.audio-status-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.vsl-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .vsl-title {
    font-size: 26px;
  }
}

.vsl-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.vsl-helper-bar {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.52);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  text-align: center;
  width: 100%;
}

.scroll-indicator {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.scroll-indicator-text {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-color);
}

.scroll-indicator-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.4);
  background-color: rgba(57, 255, 20, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceSlow 2s infinite ease-in-out;
}

/* --- Call To Action (CTAs) --- */
.cta-wrapper {
  width: 100%;
  max-width: 36rem;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-cta {
  position: relative;
  display: block;
  width: 100%;
  min-height: 86px;
  border-radius: 18px;
  border: 1px solid transparent;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.btn-cta:hover {
  transform: scale(1.01);
}

.btn-cta:active {
  transform: scale(0.985);
}

.btn-cta-telegram {
  border-color: var(--telegram-border);
  background-color: var(--telegram-color);
  box-shadow: 0 0 34px var(--telegram-glow);
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.btn-cta-whatsapp {
  border-color: var(--whatsapp-border);
  background-color: var(--whatsapp-color);
  box-shadow: 0 0 34px var(--whatsapp-glow);
  animation: ctaPulseWsp 1.8s ease-in-out infinite;
  animation-delay: 0.2s;
}

.btn-cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.72), transparent 36%);
  opacity: 0.35;
  pointer-events: none;
}

.btn-cta-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  transform: rotate(12deg);
  background-color: rgba(255, 255, 255, 0.6);
  filter: blur(4px);
  pointer-events: none;
  animation: shimmer 5s infinite ease-in-out;
}

.btn-cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-cta-title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .btn-cta-title {
    font-size: 20px;
  }
}

.btn-cta-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.btn-cta-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  flex-shrink: 0;
}

/* Secondary Action Button */
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
  margin: 0.75rem auto 0;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.045);
  padding: 0.75rem 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  text-align: left;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 255, 20, 0.35);
  background-color: rgba(57, 255, 20, 0.075);
}

.btn-secondary-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-secondary-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-secondary-title {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.btn-secondary-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.125rem;
}

.btn-secondary-arrow {
  color: var(--accent-color);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-secondary:hover .btn-secondary-arrow {
  transform: translateX(2px);
}

/* Glass Highlight Box */
.highlight-box {
  width: 100%;
  max-width: 36rem;
  margin: 1rem auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(57, 255, 20, 0.26);
  background-color: rgba(57, 255, 20, 0.075);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 18px 70px rgba(57, 255, 20, 0.10);
}

.highlight-box-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5rem;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.22), transparent);
  filter: blur(4px);
  pointer-events: none;
  animation: shimmer 6s infinite ease-in-out;
}

.highlight-box-text {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: #ffffff;
}

@media (min-width: 640px) {
  .highlight-box-text {
    font-size: 14px;
  }
}

.highlight-box-accent {
  display: block;
  color: var(--accent-color);
}

.highlight-box-badges {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.62);
}

.highlight-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--accent-color);
}

.highlight-badge-active-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.highlight-badge-normal {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.04);
}

/* Feature Status Panel */
.status-panel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.62);
  padding: 1rem;
  margin-top: 2rem;
  width: 100%;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.status-panel-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 0%, rgba(57, 255, 20, 0.20), transparent 44%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.status-panel-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.status-panel-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.4);
  background-color: rgba(57, 255, 20, 0.12);
  color: var(--accent-color);
}

.status-panel-title-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-color);
  line-height: 1;
}

.status-panel-title {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 0.125rem;
}

.status-panel-grid {
  display: grid;
  gap: 0.5rem;
  position: relative;
}

.status-panel-item {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.status-panel-check {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Feature Counters / Meta Info */
.features-counter-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.features-counter-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.features-counter-icon {
  color: var(--accent-color);
}

.disclaimer-top {
  margin-top: 1.25rem;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* --- Bonus Section (Marquee) --- */
.bonus-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  background: linear-gradient(rgba(57, 255, 20, 0.05), transparent);
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background-color: rgba(0, 0, 0, 0.55);
  padding: 0.625rem 0;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.16);
}

.marquee-fade-left, .marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #050607, transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #050607, transparent);
}

.marquee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.marquee-header svg {
  width: 0.875rem;
  height: 0.875rem;
}

.marquee-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 0.5rem;
  animation: bonusMarquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

/* --- Features Grid --- */
.features-cards {
  padding: 3.5rem 0;
}

.features-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
}

.feature-card-icon {
  color: var(--accent-color);
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card-title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.feature-card-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

/* --- Feedbacks / Testimonials --- */
.feedbacks {
  padding: 3.5rem 0;
}

.feedbacks-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.feedbacks-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
}

.feedbacks-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.04;
  color: #ffffff;
}

@media (min-width: 768px) {
  .feedbacks-title {
    font-size: 52px;
  }
}

.feedbacks-subtitle {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .feedbacks-subtitle {
    font-size: 16px;
  }
}

.feedbacks-grid {
  display: grid;
  gap: 1rem;
}

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

.feedback-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.feedback-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #000000;
}

.feedback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.feedback-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.feedback-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.65);
  padding: 0.25rem 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.feedback-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.feedback-quote {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.feedback-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.feedback-author {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.feedback-location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.125rem;
}

.feedback-icon {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* --- Call To Action Section --- */
.cta-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.04;
  color: #ffffff;
}

@media (min-width: 768px) {
  .cta-section-title {
    font-size: 48px;
  }
}

.cta-section-subtitle {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.disclaimer-bottom {
  margin-top: 1.5rem;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- Risk Banner --- */
.risk-banner {
  border-top: 1px solid rgba(255, 92, 92, 0.25);
  background-color: #1a0707;
  padding: 0.75rem 0;
}

.risk-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.risk-banner-icon {
  color: var(--text-alert);
  margin-right: 0.5rem;
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-color);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.footer-column-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}

.footer-link {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}

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