/* 
   JOELHEIRA FORTE PRO™ - PREMIUM LANDING PAGE CSS
   Brand: ResolveHub
   Color Palette: Dark premium (#08111C), Electric Blue (#0B63CE), Neon Green (#19F0B4)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-primary: #08111C;
  --bg-secondary: #0C1A2B;
  --bg-tertiary: #12243C;
  
  --accent-blue: #19F0B4;
  --accent-blue-hover: #26FFC6;
  --accent-blue-glow: rgba(25, 240, 180, 0.4);
  
  --accent-green: #0B63CE;
  --accent-green-hover: #177FFF;
  --accent-green-glow: rgba(11, 99, 206, 0.4);
  
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  /* Glassmorphism */
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-glow: rgba(25, 240, 180, 0.2);
  --bg-glass: rgba(12, 26, 43, 0.65);
  --bg-glass-hover: rgba(18, 36, 60, 0.8);
  
  /* Shadows & Glows */
  --shadow-neon-blue: 0 0 25px rgba(25, 240, 180, 0.35);
  --shadow-neon-green: 0 0 25px rgba(11, 99, 206, 0.3);
  --shadow-button-glow: 0 0 30px rgba(25, 240, 180, 0.6);
  --shadow-button-green-glow: 0 0 30px rgba(11, 99, 206, 0.6);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Glow Background Ornaments */
.glow-spot {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.15;
}
.glow-blue {
  background: var(--accent-blue);
}
.glow-green {
  background: var(--accent-green);
}

/* Section Common Styles */
section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  section {
    padding: 60px 15px;
  }
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFF 40%, #D1E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .section-header p {
    font-size: 1rem;
  }
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
}

.badge-primary {
  background: rgba(25, 240, 180, 0.15);
  border-color: rgba(25, 240, 180, 0.3);
  color: #D1FFF2;
  box-shadow: 0 0 15px rgba(25, 240, 180, 0.1);
}

.badge-neon {
  background: rgba(25, 240, 180, 0.1);
  border-color: rgba(25, 240, 180, 0.3);
  color: var(--accent-green);
  box-shadow: 0 0 15px rgba(25, 240, 180, 0.1);
}

/* Glowing text */
.text-neon {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(25, 240, 180, 0.3);
}

/* Glassmorphic Cards Base */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(25, 240, 180, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--shadow-neon-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #10B486 100%);
  color: #08111C;
  border: 1px solid rgba(25, 240, 180, 0.1);
  box-shadow: 0 4px 20px rgba(25, 240, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-button-glow);
  background: linear-gradient(135deg, var(--accent-blue-hover) 0%, var(--accent-blue) 100%);
}

.btn-neon {
  background: linear-gradient(135deg, var(--accent-green) 0%, #10B486 100%);
  color: #08111C;
  border: none;
  box-shadow: 0 4px 20px rgba(25, 240, 180, 0.4);
  position: relative;
}

.btn-neon:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: var(--shadow-button-green-glow);
  background: linear-gradient(135deg, var(--accent-green-hover) 0%, var(--accent-green) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-blue);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(25, 240, 180, 0.15);
  transform: scale(1.02);
}

.btn-block {
  width: 100%;
}

/* ---------------------------------------------------- */
/* SECTION: ANNOUNCEMENT BAR & HEADER */
/* ---------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #10B486, #0A8562);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid rgba(25, 240, 180, 0.2);
}

.announcement-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(8, 17, 28, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo span {
  color: var(--accent-blue);
}

.brand-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  display: inline-block;
  box-shadow: var(--shadow-neon-green);
}

/* ---------------------------------------------------- */
/* SECTION 1: HERO */
/* ---------------------------------------------------- */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(to right, #ffffff, #e2edfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 .hero-highlight {
  display: block;
  font-size: 3rem;
  margin-top: 10px;
}

.hero-content .subheadline {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.hero-pricing-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-price {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  display: inline-block;
}

.hero-price .price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.hero-price .price-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.hero-price .price-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-green);
}

.hero-price-installments {
  font-size: 1rem;
  color: var(--text-secondary);
}

.hero-price-installments strong {
  color: #FFFFFF;
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item svg {
  color: var(--accent-green);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid rgba(25, 240, 180, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(25, 240, 180, 0.2);
  max-width: 100%;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 28, 0.4), transparent);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(8, 17, 28, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-green);
  border-radius: var(--border-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-neon-green);
  z-index: 3;
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(25, 240, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

.floating-badge-text span {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

.floating-badge-text strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content h1 .hero-highlight {
    font-size: 2.4rem;
  }
  
  .hero-pricing-box {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.15rem;
  }
  .hero-content h1 .hero-highlight {
    font-size: 1.85rem;
  }
  .hero-pricing-box {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 2: TRUST METRICS */
/* ---------------------------------------------------- */
.metrics {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 50px 20px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-card:last-child {
  border-right: none;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 5px;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #D1E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-number.text-glow-green {
  background: linear-gradient(135deg, var(--accent-green) 0%, #00CBA4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 991px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .metric-card {
    border-right: none;
  }
  .metric-card:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .metric-card {
    border-left: none !important;
  }
  .metric-number {
    font-size: 2.5rem;
  }
}

/* ---------------------------------------------------- */
/* SECTION 3: BENEFITS */
/* ---------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  background: rgba(25, 240, 180, 0.1);
  border: 1px solid rgba(25, 240, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.glass-card:hover .benefit-card-icon {
  background: rgba(25, 240, 180, 0.1);
  border-color: rgba(25, 240, 180, 0.3);
  color: var(--accent-green);
  transform: rotate(5deg) scale(1.05);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.benefit-card p {
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 4: IS IT FOR ME? */
/* ---------------------------------------------------- */
.is-it-for-me {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.checklist-graphic {
  position: relative;
}

.checklist-graphic-card {
  background: var(--bg-primary);
  border: 2px solid rgba(25, 240, 180, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-neon-green);
}

.checklist-graphic h3 {
  font-size: 1.85rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.checklist-graphic p {
  margin-bottom: 30px;
}

.checklist-stats-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 15px 20px;
}

.checklist-stats-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.checklist-stats-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.checklist-stats-fill {
  height: 100%;
  width: 93%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  box-shadow: 0 0 10px var(--accent-green);
}

.checklist-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(25, 240, 180, 0.3);
  transform: translateX(5px);
}

.checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(25, 240, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

.checklist-item-content h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.checklist-item-content p {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 5: HOW IT WORKS */
/* ---------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connective Line for Process Steps (Desktop only) */
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: dashed rgba(25, 240, 180, 0.2);
  z-index: 1;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(25, 240, 180, 0.2);
  transition: var(--transition-smooth);
}

.glass-card:hover .process-step-number {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 15px rgba(25, 240, 180, 0.3);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-card p {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 6: USE CASES */
/* ---------------------------------------------------- */
.use-cases {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.showcase-card {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Modern Gradient Overlay */
.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #08111C 0%, rgba(8, 17, 28, 0.9) 25%, rgba(8, 17, 28, 0.3) 70%, rgba(8, 17, 28, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.showcase-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(25, 240, 180, 0.2);
  border: 1px solid rgba(25, 240, 180, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.showcase-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.showcase-card p {
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 240, 180, 0.3);
  box-shadow: var(--shadow-card), var(--shadow-neon-green);
}

.showcase-card:hover .showcase-card-img {
  transform: scale(1.1);
}

.showcase-card:hover .showcase-card-overlay {
  background: linear-gradient(to top, #08111C 0%, rgba(8, 17, 28, 0.95) 45%, rgba(8, 17, 28, 0.4) 80%);
}

.showcase-card:hover .showcase-card-icon {
  background: rgba(25, 240, 180, 0.2);
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: var(--shadow-neon-green);
}

.showcase-card:hover p {
  opacity: 1;
  max-height: 80px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    height: 280px;
  }
  .showcase-card p {
    opacity: 1;
    max-height: 80px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 7: TESTIMONIALS */
/* ---------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--accent-blue);
  overflow: hidden;
}

.testimonial-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--accent-blue), #042C5D);
}

.testimonial-user-info h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
}

.testimonial-user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  color: #F8C301;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-verified {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(25, 240, 180, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-verified {
    top: auto;
    bottom: 25px;
    right: 30px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 8: OFFER CARD */
/* ---------------------------------------------------- */
.offer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
}

.offer-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.offer-card-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  border-radius: 22px;
  z-index: 0;
  opacity: 0.3;
  filter: blur(2px);
}

.offer-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 50px;
  background: radial-gradient(100% 100% at 50% 0%, #0E223D 0%, #08111C 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(25, 240, 180, 0.25);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.offer-card-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--accent-blue), #10B486);
  border: 1px solid rgba(25, 240, 180, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-neon-blue);
  white-space: nowrap;
}

.offer-card-header span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.offer-info h2 {
  font-size: 2.25rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.offer-checklist li svg {
  flex-shrink: 0;
  color: var(--accent-green);
}

.offer-action-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
}

.offer-timer-box {
  background: rgba(25, 240, 180, 0.08);
  border: 1px solid rgba(25, 240, 180, 0.2);
  border-radius: var(--border-radius-md);
  padding: 10px 15px;
  margin-bottom: 25px;
}

.offer-timer-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #D1E5FF;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-timer {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.timer-unit {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(25, 240, 180, 0.2);
  display: inline-block;
  min-width: 40px;
}

.timer-divider {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-muted);
}

.offer-pricing {
  margin-bottom: 25px;
}

.offer-price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
}

.offer-price-current {
  font-size: 2.75rem;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.offer-price-current span {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent-green);
}

.offer-price-split {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.offer-price-split strong {
  color: var(--accent-green);
  font-size: 1.35rem;
}

.offer-cta-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.offer-payment-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .offer-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .offer-card {
    padding: 35px 20px;
  }
  .offer-info h2 {
    font-size: 1.85rem;
    text-align: center;
  }
  .offer-action-box {
    padding: 20px 15px;
  }
  .offer-price-current {
    font-size: 2.25rem;
  }
}

/* ---------------------------------------------------- */
/* SECTION 9: FAQ */
/* ---------------------------------------------------- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(25, 240, 180, 0.3);
  background: var(--bg-glass-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 1.125rem;
  color: #FFFFFF;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: rgba(25, 240, 180, 0.4);
  box-shadow: 0 4px 20px rgba(25, 240, 180, 0.15);
}

.faq-item.active .faq-question h3 {
  color: var(--accent-blue-hover);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background: rgba(25, 240, 180, 0.1);
  border-color: rgba(25, 240, 180, 0.3);
  color: var(--accent-blue-hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 30px 25px 30px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer-inner {
    padding: 0 20px 20px 20px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 10: FINAL URGENCY */
/* ---------------------------------------------------- */
.urgency {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(120% 120% at 50% 50%, #0F223B 0%, #08111C 100%);
  border-top: 1px solid var(--border-glass);
}

.urgency-content {
  max-width: 700px;
  margin: 0 auto;
}

.urgency h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 30%, #E2EDFD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.urgency p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.urgency-scarcity {
  max-width: 400px;
  margin: 0 auto 40px auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--border-radius-lg);
}

.urgency-scarcity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.urgency-scarcity-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.urgency-scarcity-fill {
  height: 100%;
  width: 15%; /* Represents 7 remaining units */
  background: linear-gradient(90deg, #FF3D3D, #FF7676);
  box-shadow: 0 0 10px rgba(255, 61, 61, 0.5);
  animation: pulse-red 2s infinite alternate;
}

@keyframes pulse-red {
  0% { opacity: 0.8; box-shadow: 0 0 5px rgba(255, 61, 61, 0.5); }
  100% { opacity: 1; box-shadow: 0 0 15px rgba(255, 61, 61, 0.8); }
}

.urgency-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .urgency h2 {
    font-size: 2.25rem;
  }
  .urgency p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------- */
/* SECTION 11: FOOTER */
/* ---------------------------------------------------- */
.footer {
  background: #04090F;
  border-top: 1px solid var(--border-glass);
  padding: 60px 20px 120px 20px; /* Large bottom padding for mobile sticky CTA */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-transparency {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.footer-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-brand span {
  color: var(--accent-blue);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------------------------------------------------- */
/* MOBILE STICKY CTA BAR */
/* ---------------------------------------------------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 17, 28, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(25, 240, 180, 0.3);
  padding: 12px 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.show {
  transform: translateY(0);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.sticky-pricing {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent-green);
}

.sticky-pricing span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.sticky-cta-bar .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

@media (min-width: 769px) {
  /* Hide sticky CTA bar on desktop */
  .sticky-cta-bar {
    display: none !important;
  }
  .footer {
    padding-bottom: 60px;
  }
}

/* ---------------------------------------------------- */
/* ANIMATIONS & EFFECTS */
/* ---------------------------------------------------- */

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for primary buttons */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px rgba(25, 240, 180, 0.4); }
  50% { box-shadow: 0 0 25px rgba(25, 240, 180, 0.8); }
  100% { box-shadow: 0 0 10px rgba(25, 240, 180, 0.4); }
}

.pulse-animation {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-green-glow {
  0% { box-shadow: 0 0 10px rgba(25, 240, 180, 0.4); }
  50% { box-shadow: 0 0 25px rgba(25, 240, 180, 0.8); }
  100% { box-shadow: 0 0 10px rgba(25, 240, 180, 0.4); }
}

.pulse-green-animation {
  animation: pulse-green-glow 2s infinite;
}
