/* style.css - MedIAdor Landing Page Premium Stylesheet */

/* --- Custom variables and system design --- */
:root {
  --bg-dark: #FBFBFA; /* Ivory background */
  --bg-emerald: #13382C; /* Deep green */
  --gold: #B5944E;
  --gold-hover: #9F7E3B; /* Slightly darker gold for light theme hover */
  --gold-opacity: rgba(181, 148, 78, 0.12);
  --gold-border: rgba(181, 148, 78, 0.25);
  
  --red: #C84B31;
  --red-hover: #A8331B;
  --red-opacity: rgba(200, 75, 49, 0.08);
  --red-border: rgba(200, 75, 49, 0.2);
  
  --text-light: #132621; /* Main text in light theme */
  --text-muted: #5E776E; /* Muted text in light theme */
  --text-dark: #132621; /* Dark text fallback */
  
  --border-glass: rgba(19, 38, 32, 0.08);
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-card: #FFFFFF;
  
  --shadow-gold: 0 12px 40px -5px rgba(181, 148, 78, 0.2);
  --shadow-card: 0 20px 40px -10px rgba(19, 38, 32, 0.08);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Base Resets & Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-family: var(--font-sans);
  color: var(--text-light);
  overflow-x: hidden;
}

body {
  position: relative;
  min-h: 100vh;
  line-height: 1.6;
}

/* --- Ambient Background Glows --- */
.glow-bg-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 900px;
  background: radial-gradient(circle at 50% 0%, rgba(181, 148, 78, 0.12) 0%, rgba(251, 251, 250, 0) 65%);
  z-index: -2;
  pointer-events: none;
}

.glow-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 1000px;
  background: radial-gradient(circle at 50% 100%, rgba(19, 56, 44, 0.05) 0%, rgba(251, 251, 250, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

/* --- Shared Layout & Containers --- */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Typography elements */
.gradient-text {
  background: linear-gradient(135deg, var(--bg-emerald) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.icon-red {
  color: var(--red);
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* Glassmorphism utility card */
.glass-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

/* --- Button Styles --- */
.btn-primary-glow {
  background-color: var(--gold);
  color: var(--bg-emerald); /* Deep green text on gold background */
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-glow:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 45px -5px rgba(181, 148, 78, 0.45);
}

.btn-secondary {
  border: 1.5px solid var(--border-glass);
  color: var(--text-light);
  background-color: rgba(19, 38, 32, 0.02);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background-color: rgba(181, 148, 78, 0.08);
  color: var(--text-light);
}

/* --- Header / Navigation --- */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  user-select: none;
}

.logo-light {
  color: var(--text-light);
}

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

.btn-header-cta {
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-header-cta:hover {
  border-color: var(--gold);
  background: rgba(181, 148, 78, 0.08);
  color: #FFF;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 170px;
  padding-bottom: 90px;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
}

.hero-badge {
  background: rgba(181, 148, 78, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Comparison Section (Problem vs Solution) --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.comparison-card {
  padding: 48px;
  border-radius: 28px;
  position: relative;
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card {
  border: 1px solid var(--red-border);
  background: rgba(200, 75, 49, 0.02);
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 75, 49, 0.35);
}

.solution-card {
  border: 1.5px solid var(--gold);
  background: radial-gradient(circle at 100% 0%, rgba(181, 148, 78, 0.05) 0%, #FFFFFF 70%);
  box-shadow: 0 15px 45px -10px rgba(181, 148, 78, 0.12);
}

.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px -10px rgba(181, 148, 78, 0.22);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.bg-red-opacity {
  background: var(--red-opacity);
  color: var(--red);
  border: 1px solid var(--red-border);
}

.bg-gold-opacity {
  background: var(--gold-opacity);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.comparison-card .card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-list li {
  display: flex;
  gap: 16px;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.comparison-list li strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-light);
}

.comparison-list li div {
  color: var(--text-muted);
}

.solution-card .comparison-list li strong {
  color: var(--gold);
}

/* --- How It Works Section --- */
.timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(181, 148, 78, 0) 0%, var(--gold-border) 20%, var(--gold-border) 80%, rgba(181, 148, 78, 0) 100%);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--bg-dark);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(181, 148, 78, 0.2);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
  background-color: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 0 25px rgba(181, 148, 78, 0.5);
  transform: scale(1.05);
}

.step-content {
  padding: 0 12px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.step-description {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Showcase Section --- */
.showcase-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
  width: 100%;
}

.tab-btn i {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
  transition: all 0.3s ease;
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tab-text strong {
  font-size: 16px;
  color: var(--text-muted);
  font-family: var(--font-serif);
  transition: color 0.3s ease;
}

.tab-text span {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.8;
}

.tab-btn.active, .tab-btn:hover {
  background: #FFFFFF;
  border-color: var(--gold-border);
  box-shadow: 0 10px 30px -5px rgba(19, 38, 32, 0.05);
}

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active .tab-text strong {
  color: var(--text-light);
}

.tab-btn.active i {
  color: var(--gold);
  transform: scale(1.08);
}

/* Device simulation panel */
.showcase-device-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup-frame {
  width: 290px;
  height: 590px;
  background-color: var(--bg-dark);
  border: 8px solid #1C2A25;
  border-radius: 38px;
  position: relative;
  box-shadow: 0 25px 65px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(19, 56, 44, 0.3);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.phone-glass-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  z-index: 10;
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0E1E1A;
}

.phone-screen-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.mockup-carousel-arrows {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.arrow-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: rgba(181, 148, 78, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

#carousel-indicator-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* --- Interactive Calculator Section --- */
.calculator-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 56px;
  gap: 56px;
}

.calculator-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.calculator-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.calculator-description {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.calc-checkbox-input {
  display: none;
}

.calc-checkbox-box {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border-glass);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  margin-top: 2px;
  transition: all 0.2s ease;
  color: var(--gold);
}

.calc-checkbox-box .check-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.calc-checkbox-input:checked + .calc-checkbox-box {
  border-color: var(--gold);
  background-color: rgba(181, 148, 78, 0.1);
}

.calc-checkbox-input:checked + .calc-checkbox-box .check-icon {
  opacity: 1;
  transform: scale(1);
}

.calc-checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-checkbox-text strong {
  font-size: 15px;
  color: var(--text-light);
}

.calc-checkbox-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Calculator Price Display */
.calculator-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-display-box {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.price-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-light);
  margin: 12px 0 18px 0;
  letter-spacing: -0.02em;
}

.price-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px dashed rgba(19, 38, 32, 0.08);
  border-bottom: 1px dashed rgba(19, 38, 32, 0.08);
  padding: 20px 0;
  margin-bottom: 24px;
}

.price-split-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.split-label {
  font-size: 11px;
  color: var(--text-muted);
}

.split-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.price-includes {
  text-align: left;
}

.includes-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.includes-list li {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.includes-list li i {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* --- FAQ Section --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.faq-item {
  padding: 32px;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(181, 148, 78, 0.3);
}

.faq-question {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}

.faq-answer {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CTA Banner Section --- */
.cta-banner-section {
  padding-bottom: 120px;
}

.cta-banner-card {
  padding: 60px 48px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #1A352F 0%, #0E1E1A 100%);
  border: 1.5px solid rgba(181, 148, 78, 0.2);
  color: #FFFFFF;
}

.cta-banner-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.cta-banner-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* --- Footer --- */
.main-footer {
  background-color: #0E1E1A;
  border-top: 1px solid rgba(19, 38, 32, 0.05);
  padding: 60px 0;
}

.main-footer .logo-light {
  color: #FFFFFF; /* White logo in dark footer */
}

.main-footer .footer-links a {
  color: #A0B2AC;
}

.main-footer .footer-links a:hover {
  color: var(--gold);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 400px;
}

.footer-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* --- Responsive Adaptations (Media Queries) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
  
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .showcase-info-panel {
    order: 2;
  }
  
  .showcase-device-panel {
    order: 1;
  }
  
  .showcase-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tab-btn {
    width: auto;
    padding: 12px 20px;
  }
  
  .calculator-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
  
  .price-display-box {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .comparison-card {
    padding: 32px;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .timeline-container::before {
    display: none;
  }
  
  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }
  
  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .step-content {
    padding: 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-banner-title {
    font-size: 28px;
  }
  
  .cta-banner-card {
    padding: 40px 24px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 16px;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Modal Coming Soon Overlay & Card --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 30, 26, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 90%;
  max-width: 480px;
  background-color: #FFFFFF;
  border: 1px solid rgba(181, 148, 78, 0.25);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 60px -15px rgba(19, 38, 32, 0.15);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background-color: rgba(19, 38, 32, 0.05);
  color: var(--text-light);
}

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

.modal-icon-badge {
  width: 60px;
  height: 60px;
  background-color: var(--gold-opacity);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
}

.modal-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

#lead-email {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: 14px;
  border: 1.5px solid var(--border-glass);
  background-color: #FBFBFA;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

#lead-email:focus {
  border-color: var(--gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(181, 148, 78, 0.1);
}

#lead-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 24px;
  border-radius: 20px;
  background-color: rgba(19, 56, 44, 0.03);
  border: 1px dashed rgba(181, 148, 78, 0.3);
  animation: fadeIn 0.4s ease;
  width: 100%;
}

#lead-success-msg h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

#lead-success-msg p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.icon-success {
  color: #13382C;
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.lead-success-hidden {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
