/* =============================================
   BLULEADZ SUBPAGES - SHARED STYLES
   ============================================= */

/* Page Hero (reusable for all subpages) */
.page-hero {
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.page-hero.light-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 70%);
}
.page-hero.dark-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2847 100%);
  color: var(--white);
}
.page-hero.blue-hero {
  background: linear-gradient(135deg, #012B5C 0%, var(--navy) 100%);
  color: var(--white);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-inner.centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}
.page-hero .hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.light-hero .hero-tag {
  border-color: var(--border);
  color: var(--blue);
}
.dark-hero .hero-tag, .blue-hero .hero-tag {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero .hero-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.85;
}
.light-hero .hero-desc { color: var(--gray-text); }
.page-hero .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-hero-inner.centered .hero-btns { justify-content: center; }

/* Hero decorative shapes */
.page-hero .hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.page-hero .hero-decor-1 {
  width: 400px; height: 400px;
  background: var(--blue);
  top: -100px; right: -100px;
}
.page-hero .hero-decor-2 {
  width: 300px; height: 300px;
  background: #00B4D8;
  bottom: -80px; left: -80px;
}

/* Marquee bar variant */
.marquee-bar {
  padding: 20px 0;
  background: var(--blue);
  overflow: hidden;
}
.marquee-bar .trust-marquee { color: rgba(255,255,255,0.9); }
.marquee-bar .trust-item { color: rgba(255,255,255,0.9); font-size: 14px; }

/* Content Section */
.content-section {
  padding: 100px 40px;
}
.content-section.bg-white { background: var(--white); }
.content-section.bg-light { background: var(--light-bg); }
.content-section.bg-dark { background: var(--navy); color: var(--white); }
.content-section.bg-blue { background: #012B5C; color: var(--white); }
.content-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

/* Section headings */
.sec-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.bg-dark .sec-tag, .bg-blue .sec-tag { color: #60A5FA; }
.sec-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sec-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.bg-dark .sec-subtitle, .bg-blue .sec-subtitle { color: rgba(255,255,255,0.7); }

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--blue);
}
.bg-dark .feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.bg-dark .feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--blue);
}
.feature-card .card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}
.bg-dark .feature-card p { color: rgba(255,255,255,0.6); }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
}
.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.pricing-card .tier-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-card .price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.pricing-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}
.pricing-card .price-desc {
  font-size: 14px;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Process steps */
.process-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: var(--border);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  position: relative;
}
.step-circle.blue { background: var(--navy); color: var(--white); }
.step-circle.light-blue { background: #DBEAFE; color: var(--blue); }
.step-circle.green { background: var(--green-bg); color: var(--green-text); }
.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.step-num.blue { background: var(--navy); }
.step-num.light-blue { background: var(--blue); }
.step-num.green { background: var(--green-text); }
.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* Hub cards (sticky scroll section) */
.hub-scroll-section {
  padding: 100px 40px;
  background: var(--white);
}
.hub-scroll-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.hub-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}
.hub-cards { display: flex; flex-direction: column; gap: 24px; }
.hub-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.hub-card:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.hub-card .hub-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.hub-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hub-card p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.6;
}
.hub-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hub-card ul li {
  font-size: 13px;
  color: var(--gray-text);
  padding-left: 16px;
  position: relative;
}
.hub-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Testimonial section */
.testimonial-section {
  padding: 100px 40px;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -200px;
  left: -100px;
}
.testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-tag {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  color: var(--white);
}
.testimonial-card .quote {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 15px;
}
.testimonial-card .role {
  font-size: 13px;
  opacity: 0.7;
}

/* FAQ section */
.faq-section {
  padding: 100px 40px;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--blue); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: none;
  width: 100%;
  text-align: left;
  color: var(--navy);
}
.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: all 0.3s;
}
.faq-item.active .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* Partner badges section */
.partner-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.badge-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.badge-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.badge-text p {
  font-size: 13px;
  opacity: 0.7;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #DBEAFE, #A5F3FC);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 13px;
  color: var(--gray-text);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.stat-card .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-group label .req { color: var(--red-text); }
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,118,225,0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.light-hero .contact-icon {
  background: var(--light-bg);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 24px;
}
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Scroll animations */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .hub-scroll-inner { grid-template-columns: 1fr; }
  .hub-sticky { position: relative; top: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: 32px; }
  .content-section { padding: 60px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sec-title { font-size: 28px; }
  .team-grid { grid-template-columns: 1fr; }
}
