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

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --accent: #0284c7;
  --accent-light: #38bdf8;
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  --accent-hover: #0369a1;
  --whatsapp: #25d366;
  --whatsapp-hover: #22c55e;
  --background: #f8fafc;
  --card-bg: #ffffff;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --max-width: 1200px;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background-color: rgba(2, 132, 199, 0.05);
}

/* Dropdown navigation styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--card-bg);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-content a {
  color: var(--text);
  padding: 0.75rem 1.25rem;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background-color: rgba(2, 132, 199, 0.05);
  color: var(--accent);
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* Contact button styling in nav */
.contact-nav-btn {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 0.5rem 1.25rem !important;
  transition: all 0.2s ease;
}

.contact-nav-btn:hover {
  background-color: var(--accent) !important;
  box-shadow: var(--shadow-sm);
}


/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../assets/images/consulting_hero.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 8rem 1.5rem 9rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(2, 132, 199, 0.25) 0%, transparent 100%);
  pointer-events: none;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--border);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3), var(--shadow-md);
  color: #ffffff;
}

.whatsapp-button {
  background: var(--whatsapp);
}

.whatsapp-button:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3), var(--shadow-md);
}

/* Main Layout Grid */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Sectors Section */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.grid-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.sector-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.2);
}

.sector-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(2, 132, 199, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.sector-card h3 {
  margin-bottom: 0.75rem;
}

.sector-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.sector-card .card-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sector-card .card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.sector-card:hover .card-link::after {
  transform: translateX(4px);
}

/* Features/Why Us Section */
.features-section {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 2.5rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Promo Box */
.promo-box {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.promo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 85%, rgba(2, 132, 199, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.promo-box h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.promo-box p {
  color: var(--border);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Article / Landing Content Style */
.article-layout {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
}

.article-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.article-header h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.article-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #334155;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.article-body strong {
  color: var(--primary);
}

/* Footer styling */
.site-footer {
  background-color: var(--primary);
  color: #94a3b8;
  padding: 5rem 1.5rem 3rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column p {
  line-height: 1.7;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info-list svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #334155;
  background-color: #1e293b;
  color: #ffffff;
  font-family: inherit;
  margin-bottom: 0.75rem;
}

.footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-newsletter .submit-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-newsletter .submit-btn:hover {
  background: var(--accent-hover);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hamburger Menu Button Styles */
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Responsiveness */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .header-container {
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 1rem 1.5rem;
    gap: 0;
  }
  
  .nav-toggle-label {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
  }
  
  .nav-toggle:checked ~ .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Hamburger Animation to 'X' */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
    display: none;
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-content {
    display: block;
  }

  .contact-nav-btn {
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .grid-sectors {
    grid-template-columns: 1fr;
  }
  
  .article-layout {
    padding: 2rem 1.5rem;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Premium Animations & Micro-interactions
   ========================================================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseHighlight {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 15px 5px rgba(2, 132, 199, 0.2);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Micro-interactions */
.sector-card, .blog-card, .cta-button, .nav-link, .submit-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgb(34 197 94 / 0.5);
}

.contact-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* ==========================================================================
   Sección Promocional de la Comunidad (Home)
   ========================================================================== */
.promo-comunidad {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 6rem 1.5rem;
  border-radius: 24px;
  margin: 4rem auto;
  max-width: var(--max-width);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.promo-comunidad::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.promo-badge {
  background: rgba(2, 132, 199, 0.2);
  color: var(--accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.promo-comunidad h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.promo-comunidad p {
  color: #94a3b8;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.promo-cta-btn {
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.promo-cta-btn:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.6);
}

/* ==========================================================================
   Landing Page Comunidad (CRO-Optimized)
   ========================================================================== */
.comunidad-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

@media (max-width: 992px) {
  .comunidad-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.offer-stack {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.offer-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.offer-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}

.offer-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.offer-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.offer-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Formulario de registro premium - Glassmorphism */
.register-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-xl);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: sticky;
  top: 100px;
}

.register-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.register-price-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.register-price-tag span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background-color: #ffffff;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.register-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px -5px rgb(16 185 129 / 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.register-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgb(16 185 129 / 0.6);
}

/* Modal de Suscripción / Correo de Bienvenida Simulado */
.welcome-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.welcome-modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.welcome-modal-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.welcome-modal-header h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.welcome-modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: 70vh;
}

.welcome-email-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.email-meta-line {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.5rem;
}

.email-meta-line strong {
  color: #334155;
}

.email-content-body {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin-top: 1rem;
}

.email-content-body p {
  margin-bottom: 1rem;
}

.email-cta-btn {
  display: inline-block;
  background: #0284c7;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
}

.email-cta-btn:hover {
  background: #0369a1;
}

.welcome-feedback-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background-color: #ffffff;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 80px;
  margin-top: 0.5rem;
}

.welcome-modal-footer {
  padding: 1.25rem 2rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.btn-secondary {
  background: #e2e8f0;
  color: #334155;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #cbd5e1;
}

.btn-accent-cta {
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-accent-cta:hover {
  transform: translateY(-1px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

