/* LeagueLineup Migration Landing Page */

/* Hero */
.ll-hero {
  background: linear-gradient(135deg, #1b2a5e 0%, #1e3a7a 50%, #256ad4 100%);
  color: #fff;
  padding: 60px 0;
}
.ll-hero-title {
  font-size: 2.6em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ll-hero-sub {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.ll-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ll-hero-buttons .btn {
  min-width: 200px;
}
.ll-hero .ll-btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.ll-hero .ll-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Sections */
.ll-section {
  padding: 60px 0;
}
.ll-section-alt {
  background: #f5f7fa;
}
.ll-section-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e3a7a;
}

/* Feature cards */
.ll-features-grid {
  margin-top: 20px;
}
.ll-feature-card {
  margin-bottom: 30px;
}
.ll-card-inner {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.ll-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.ll-card-icon {
  font-size: 2.5em;
  color: #256ad4;
  margin-bottom: 15px;
  display: block;
}
.ll-card-inner h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.ll-card-inner p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
  text-align: left;
}

/* Demo showcase */
.ll-demos-section {
  background: #1b2a5e;
  color: #fff;
  padding: 50px 0;
}
.ll-demos-section .ll-section-title {
  color: #fff;
}
.ll-demos-sub {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.85;
}
.ll-demos-row {
  margin-top: 10px;
}
.ll-demo-card {
  margin-bottom: 20px;
}
.ll-demo-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.ll-demo-img:hover {
  transform: scale(1.05);
}
.ll-demo-label {
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Migration steps */
.ll-step {
  margin-bottom: 30px;
}
.ll-step-inner {
  text-align: center;
  padding: 20px;
}
.ll-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3949ab;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 50px;
  margin: 0 auto 15px;
}
.ll-step-inner h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.ll-step-inner p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}
.ll-step-note {
  margin-top: 20px;
}

/* Comparison table */
.ll-compare-table {
  margin-top: 10px;
}
.ll-compare-table th {
  background: #f5f7fa;
  font-weight: 600;
  padding: 12px 16px;
}
.ll-compare-table th.ll-highlight {
  background: #e8eaf6;
  color: #1e3a7a;
}
.ll-compare-table td {
  padding: 10px 16px;
  vertical-align: middle;
}
.ll-compare-table td.ll-highlight {
  background: #f3f4ff;
  font-weight: 500;
}

/* FAQ Accordion */
.ll-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.ll-faq-card {
  border: none;
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
}
.ll-faq-header {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #e8eaf6;
}
.ll-faq-btn {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.05em;
  color: #1e3a7a;
  padding: 15px 20px;
  text-decoration: none;
  position: relative;
  padding-right: 40px;
  text-wrap: wrap;
}
.ll-faq-btn:hover,
.ll-faq-btn:focus {
  text-decoration: none;
  color: #256ad4;
}
.ll-faq-btn::after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.ll-faq-btn.collapsed::after {
  transform: translateY(-50%) rotate(-90deg);
}
.ll-faq-body {
  color: #444;
  line-height: 1.6;
  padding: 5px 20px 20px;
}
.ll-faq-body a {
  color: #256ad4;
}

/* CTA */
.ll-cta {
  background: linear-gradient(135deg, #1b2a5e 0%, #256ad4 100%);
  color: #fff;
  padding: 60px 0;
}
.ll-cta h2 {
  font-size: 2em;
  margin-bottom: 15px;
}
.ll-cta .lead {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}
.ll-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ll-cta-buttons .btn {
  min-width: 180px;
}
.ll-cta .ll-btn-contact {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.ll-cta .ll-btn-contact:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.ll-cta-phone {
  opacity: 0.85;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .ll-hero {
    padding: 60px 15px 40px;
  }
  .ll-hero-title {
    font-size: 1.8em;
  }
  .ll-section-title {
    font-size: 1.5em;
  }
}
