/**
 * CookieJar Pro Landing Page Styles
 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #333; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header { background: linear-gradient(135deg, #084b74 0%, #008ed6 100%); color: white; padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { color: white; text-decoration: none; font-weight: 500; transition: opacity .3s ease; }
.nav a:hover { opacity: .8; }
.cta-button { background: rgba(255,255,255,0.2); border: 2px solid white; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all .3s ease; }
.cta-button:hover { background: white; color: #084b74; }
.hero { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 80px 0; text-align: center; }
.hero h1 { font-size: 3.5rem; font-weight: 700; color: #084b74; margin-bottom: 20px; line-height: 1.2; }
.hero .subtitle { font-size: 1.3rem; color: #64748b; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, #084b74 0%, #008ed6 100%); color: white; padding: 16px 32px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all .3s ease; box-shadow: 0 4px 15px rgba(8,75,116,0.3); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,75,116,0.4); }
.btn-secondary { background: white; color: #084b74; padding: 16px 32px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1.1rem; border: 2px solid #084b74; transition: all .3s ease; }
.btn-secondary:hover { background: #084b74; color: white; }
.features { padding: 80px 0; background: white; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 700; color: #084b74; margin-bottom: 20px; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #64748b; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 40px; margin-top: 60px; }
.feature-card { background: white; padding: 40px 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center; transition: all .3s ease; border: 1px solid #e2e8f0; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.feature-icon { width: 80px; height: 80px; background: linear-gradient(135deg,#084b74 0%,#008ed6 100%); border-radius: 20px; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; color:white; font-size:2rem; }
.feature-card h3 { font-size:1.4rem; font-weight:600; color:#084b74; margin-bottom:15px; }
.feature-card p { color:#64748b; line-height:1.6; }
.pricing { padding:80px 0; background: linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:40px; margin-top:60px; }
.pricing-card { background:white; border-radius:20px; padding:40px 30px; text-align:center; box-shadow:0 4px 20px rgba(0,0,0,0.08); transition:all .3s ease; border:2px solid transparent; position:relative; }
.pricing-card.featured { border-color:#008ed6; transform:scale(1.05); }
.pricing-card:hover { transform:translateY(-5px); box-shadow:0 8px 30px rgba(0,0,0,0.12); }
.pricing-card.featured:hover { transform:scale(1.05) translateY(-5px); }
.pricing-badge { position:absolute; top:-15px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,#084b74,#008ed6); color:white; padding:8px 20px; border-radius:20px; font-size:.9rem; font-weight:600; }
.pricing-plan { font-size:1.5rem; font-weight:700; color:#084b74; margin-bottom:10px; }
.pricing-price { font-size:3rem; font-weight:700; color:#008ed6; margin-bottom:10px; }
.pricing-period { color:#64748b; margin-bottom:30px; }
.pricing-features { list-style:none; margin-bottom:30px; padding:0; }
.pricing-features li { padding:10px 0; color:#64748b; display:flex; align-items:center; gap:10px; }
.pricing-button { width:100%; padding:16px; border-radius:12px; text-decoration:none; font-weight:600; font-size:1.1rem; transition:all .3s ease; border:none; cursor:pointer; display:block; text-align:center; }
.pricing-button.primary { background:linear-gradient(135deg,#084b74,#008ed6); color:white; }
.pricing-button.secondary { background:white; color:#084b74; border:2px solid #084b74; }
.pricing-button:hover { transform:translateY(-2px); box-shadow:0 4px 15px rgba(0,0,0,0.2); }
@media (max-width:768px){ .hero h1{font-size:2.5rem} .hero-buttons{flex-direction:column;align-items:center} .nav{display:none} .pricing-card.featured{transform:none} .pricing-card.featured:hover{transform:translateY(-5px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.fade-in-up { animation: fadeInUp .6s ease-out; }
html { scroll-behavior: smooth; }

/* =========================
   Avada Theme Overrides for Landing Page
   ========================= */

/* Wrapper isolation for landing page */
body .demewebsolutions-proprietary-landing-wrapper,
body .demewebsolutions-proprietary-landing-wrapper * {
  box-sizing: border-box;
}

/* Override Avada container constraints */
.demewebsolutions-proprietary-landing-wrapper .container,
.demewebsolutions-proprietary-landing-wrapper .fusion-container,
.demewebsolutions-proprietary-landing-wrapper .fusion-row {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Override Avada row/column spacing */
.demewebsolutions-proprietary-landing-wrapper .fusion-row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.demewebsolutions-proprietary-landing-wrapper .fusion-column-wrapper,
.demewebsolutions-proprietary-landing-wrapper .fusion-column {
  width: auto;
  float: none;
  margin: 0;
  padding: 0;
}

/* Preserve landing page header styles */
.demewebsolutions-proprietary-landing-wrapper .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #084b74 0%, #008ed6 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.demewebsolutions-proprietary-landing-wrapper .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Override Avada button styles for landing page */
.demewebsolutions-proprietary-landing-wrapper .btn-primary,
.demewebsolutions-proprietary-landing-wrapper a.btn-primary,
.demewebsolutions-proprietary-landing-wrapper button.btn-primary {
  background: linear-gradient(135deg, #084b74 0%, #008ed6 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(8,75,116,0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
}

.demewebsolutions-proprietary-landing-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8,75,116,0.4);
  background: linear-gradient(135deg, #084b74 0%, #008ed6 100%);
  color: white;
}

.demewebsolutions-proprietary-landing-wrapper .btn-secondary,
.demewebsolutions-proprietary-landing-wrapper a.btn-secondary,
.demewebsolutions-proprietary-landing-wrapper button.btn-secondary {
  background: white;
  color: #084b74;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #084b74;
  transition: all .3s ease;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
}

.demewebsolutions-proprietary-landing-wrapper .btn-secondary:hover {
  background: #084b74;
  color: white;
  transform: none;
}

.demewebsolutions-proprietary-landing-wrapper .cta-button {
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
  display: inline-block;
}

.demewebsolutions-proprietary-landing-wrapper .cta-button:hover {
  background: white;
  color: #084b74;
}

/* Preserve grid layouts */
.demewebsolutions-proprietary-landing-wrapper .features-grid,
.demewebsolutions-proprietary-landing-wrapper .pricing-grid {
  display: grid;
  gap: 40px;
}

.demewebsolutions-proprietary-landing-wrapper .features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.demewebsolutions-proprietary-landing-wrapper .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Override Avada pricing card styles */
.demewebsolutions-proprietary-landing-wrapper .pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all .3s ease;
  border: 2px solid transparent;
  position: relative;
  display: block;
}

.demewebsolutions-proprietary-landing-wrapper .pricing-card.featured {
  border-color: #008ed6;
  transform: scale(1.05);
}

.demewebsolutions-proprietary-landing-wrapper .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.demewebsolutions-proprietary-landing-wrapper .pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.demewebsolutions-proprietary-landing-wrapper .pricing-button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.demewebsolutions-proprietary-landing-wrapper .pricing-button.primary {
  background: linear-gradient(135deg, #084b74, #008ed6);
  color: white;
}

.demewebsolutions-proprietary-landing-wrapper .pricing-button.secondary {
  background: white;
  color: #084b74;
  border: 2px solid #084b74;
}

.demewebsolutions-proprietary-landing-wrapper .pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Override Avada typography */
.demewebsolutions-proprietary-landing-wrapper .section-title,
.demewebsolutions-proprietary-landing-wrapper .hero h1 {
  font-weight: 700;
  line-height: 1.2;
}

.demewebsolutions-proprietary-landing-wrapper .hero h1 {
  font-size: 3.5rem;
  color: #084b74;
}

.demewebsolutions-proprietary-landing-wrapper .section-title {
  font-size: 2.5rem;
  color: #084b74;
}

/* Override Avada spacing utilities */
.demewebsolutions-proprietary-landing-wrapper [class*="fusion-spacing-"],
.demewebsolutions-proprietary-landing-wrapper [class*="fusion-margin-"],
.demewebsolutions-proprietary-landing-wrapper [class*="fusion-padding-"] {
  margin: 0;
  padding: 0;
}

/* Override Avada animation classes */
.demewebsolutions-proprietary-landing-wrapper [class*="fusion-animated"],
.demewebsolutions-proprietary-landing-wrapper [data-animation] {
  animation: none;
  opacity: 1;
  transform: none;
}

/* Preserve fade-in-up animation */
.demewebsolutions-proprietary-landing-wrapper .fade-in-up {
  animation: fadeInUp .6s ease-out;
}

/* Responsive overrides */
@media (max-width: 768px) {
  .demewebsolutions-proprietary-landing-wrapper .hero h1 {
    font-size: 2.5rem;
  }
  
  .demewebsolutions-proprietary-landing-wrapper .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .demewebsolutions-proprietary-landing-wrapper .nav {
    display: none;
  }
  
  .demewebsolutions-proprietary-landing-wrapper .pricing-card.featured {
    transform: none;
  }
  
  .demewebsolutions-proprietary-landing-wrapper .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .demewebsolutions-proprietary-landing-wrapper .fusion-column-wrapper,
  .demewebsolutions-proprietary-landing-wrapper .fusion-column {
    width: 100%;
    float: none;
  }
}