/* ==========================================
   Featured Articles & Insights Layout Matrix
   ========================================== */
.insights-section {
  background-color: var(--white); /* Pure white background break step */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.insights-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

/* --- Left Main Editorial Column --- */
.insights-featured-column {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.insights-featured-column h2 {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.insights-featured-column h2 .accent-weight {
  font-weight: 700;
  color: var(--blob-green);
}

.insights-main-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 3.5rem;
}

/* Big Hero Card Styling */
.main-insight-card {
  background-color: #F8FBFC; /* Ultra soft premium blue-grey tint background */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(2, 110, 129, 0.02);
  border: 1px solid rgba(2, 110, 129, 0.04);
}

.insight-image-mask {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.insight-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-insight-card:hover .insight-image-mask img {
  transform: scale(1.04);
}

.insight-card-content {
  padding: 3rem 2.5rem;
}

.insight-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blob-green);
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.insight-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.insight-card-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  opacity: 0.85;
}

/* Bullet list inside big card */
.article-bullet-box {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(2, 110, 129, 0.08);
}

.article-bullet-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.article-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-bullets li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.9;
}

.article-bullets li i {
  color: var(--blob-green);
  font-size: 0.8rem;
}

/* --- Right Side List Feed Column --- */
.insights-feed-column {
  width: 46%;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.feed-header-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.insights-feed-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feed-item-card {
  border-bottom: 1px solid rgba(2, 110, 129, 0.08);
  transition: background-color 0.3s ease;
}

.feed-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 2rem 0;
  gap: 1.5rem;
}

.feed-item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feed-item-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blob-tan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.feed-item-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.feed-item-body p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-dark);
  opacity: 0.75;
  margin-bottom: 0.8rem;
}

/* Inline micro badge descriptors under list feeds */
.feed-inline-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feed-inline-bullets li {
  font-size: 0.78rem;
  font-weight: 700;
  background-color: rgba(2, 110, 129, 0.05);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

/* Circular interaction arrow handle button */
.feed-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(2, 110, 129, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.feed-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

/* Micro-Interaction States on Hover */
.feed-item-card:hover .feed-item-body h3 {
  color: var(--blob-green);
}

.feed-item-card:hover .feed-arrow-btn {
  background-color: var(--text-dark);
}

.feed-item-card:hover .feed-arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 1024px) {
  .insights-section {
    padding: 6rem 4%;
  }

  .insights-container {
    gap: 3rem;
  }

  .insights-featured-column h2 {
    font-size: 2.8rem;
  }

  .insight-card-content {
    padding: 2rem;
  }

  .feed-item-body h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .insights-section {
    padding: 4rem 5%;
  }

  .insights-container {
    flex-direction: column;
    gap: 4rem;
  }

  .insights-featured-column,
  .insights-feed-column {
    width: 100%;
  }

  .insights-featured-column {
    text-align: center;
  }

  .insights-main-subtitle {
    margin-bottom: 2.5rem;
  }

  .main-insight-card {
    text-align: left;
  }

  .insight-image-mask {
    height: 220px;
  }

  .article-bullets {
    align-items: flex-start;
  }

  .feed-header-tag {
    text-align: center;
    margin-bottom: 1rem;
    border-top: 1px dashed rgba(2, 110, 129, 0.15);
    padding-top: 2.5rem;
  }

  .feed-item-link {
    padding: 1.5rem 0;
  }
}



/* ==========================================
   Why Follow Lexaro Insights Section Styles
   ========================================== */
.why-choose-section {
  background-color: var(--white); /* Crisp pure surface break layer */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

/* --- Left Side Visual Asymmetric Architecture --- */
.why-image-side {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.why-image-mask {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 580px;
  background-color: var(--blob-tan);
  border-radius: 90px 25px 90px 90px; /* Asymmetric signature curves matching corporate core values profile */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.05);
}

.why-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-bg-shape {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 500px;
  height: 580px;
  background-color: var(--bg-color); /* Premium light gray-blue tint layout structure */
  border-radius: 90px 25px 90px 90px;
  z-index: 1;
  animation: floatAnimation 4s ease-in-out infinite;
  animation-delay: 0.5s; 
}

/* --- Right Side Text Details Architecture --- */
.why-text-side {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.why-text-side h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.why-text-side h2 .accent-weight {
  font-weight: 700;
  color: var(--blob-green);
}

.why-section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0.95;
}

/* --- Feature Items Stack List Matrix --- */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon-wrapper {
  background-color: rgba(2, 110, 129, 0.05);
  color: var(--icon-color);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0; /* Strict protection: keeps frame from buckling on multiple row text blocks */
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--text-dark);
  color: var(--white);
  transform: scale(1.05);
}

.feature-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-info p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-dark);
  opacity: 0.8;
}

/* --- Adaptive Responsive Grid Overrides --- */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 6rem 4%;
  }

  .why-choose-container {
    gap: 3rem;
  }

  .why-image-mask, 
  .why-bg-shape {
    width: 380px;
    height: 440px;
  }

  .why-text-side h2 {
    font-size: 2.6rem;
  }

  .why-section-subtitle {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 4rem 5%;
  }

  .why-choose-container {
    flex-direction: column; /* Stack media blocks neatly above body copy on touch devices */
    gap: 3.5rem;
    text-align: center;
  }

  .why-image-side {
    width: 100%;
    justify-content: center;
  }

  .why-image-mask {
    width: 280px;
    height: 350px;
    border-radius: 60px 20px 60px 60px;
  }

  .why-bg-shape {
    width: 280px;
    height: 350px;
    left: 12px;
    top: 12px;
    border-radius: 60px 20px 60px 60px;
  }

  .why-text-side {
    width: 100%;
    align-items: center;
  }

  .why-text-side h2 {
    font-size: 2.2rem;
  }

  .features-grid {
    text-align: left; /* Restores pristine layout text legibility on narrow mobile viewports */
    gap: 2rem;
  }

  .feature-item {
    flex-direction: column; /* Center graphic tags cleanly over smartphone screens */
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}



/* ==========================================
   Insights Disclaimer Section Styles
   ========================================== */
.disclaimer-section {
  background-color: var(--white); /* Crisp background break step */
  padding: 4rem 4% 6rem 4%; /* Specialized tight spacing flowing beautifully to the footer */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.disclaimer-container {
  width: 100%;
  max-width: 1250px;
}

/* Luxury Framed Notification Box Container */
.disclaimer-card {
  background-color: #F8FBFC; /* Clean blue-grey premium tint backdrop */
  border: 1px solid rgba(2, 110, 129, 0.08);
  border-radius: 24px;
  padding: 3.5rem 4rem;
  box-shadow: 0 10px 40px rgba(2, 110, 129, 0.01);
}

/* Header Matrix */
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(2, 110, 129, 0.06);
  padding-bottom: 1.5rem;
}

/* Translucent Soft Alert Icon Badge */
.disclaimer-icon-badge {
  background-color: rgba(2, 110, 129, 0.05);
  color: var(--icon-color);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.disclaimer-titles {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.disclaimer-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.disclaimer-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin: 0;
}

/* Notice Body Text Matrix */
.disclaimer-body p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 1.8rem;
}

.disclaimer-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Accentuated Actionable Callout Box */
.disclaimer-notice-box {
  background-color: rgba(225, 237, 240, 0.4); /* Soft brand filler tint mapping colors */
  border-left: 3px solid var(--blob-tan);
  padding: 1.2rem 1.8rem;
  border-radius: 0 14px 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-notice-box p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-dark);
  font-weight: 600;
  opacity: 0.9;
  margin: 0;
}

.notice-info-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Adaptive Viewport Compression System --- */
@media (max-width: 1024px) {
  .disclaimer-section {
    padding: 3rem 4% 5rem 4%;
  }

  .disclaimer-card {
    padding: 3rem;
  }

  .disclaimer-header h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 5% 4rem 5%;
  }

  .disclaimer-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .disclaimer-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-bottom: 1.8rem;
  }

  .disclaimer-icon-badge {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .disclaimer-body p {
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
  }

  .disclaimer-notice-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
    border-left: none;
    border-top: 3px solid var(--blob-tan);
    border-radius: 0 0 12px 12px;
    gap: 0.6rem;
  }
}


/* ==========================================
   Final CTA Section Styles
   ========================================== */
.final-cta-section {
  background-color: var(--white); /* Seamless flush continuation with preceding white structures */
  padding: 4rem 4% 8rem 4%;      /* Balances layout spacing pushing perfectly down to the footer */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

/* Luxury Card Frame with Deep Theme Tint */
.final-cta-card {
  width: 100%;
  max-width: 1250px;
  background-color: var(--text-dark); /* Deep Abyss luxury dominant layout tone */
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.15);
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Glassmorphism Subtle Internal Light Reflection Layer */
.cta-glass-blur {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Specialized High-Contrast Tag for Dark Layout Context */
.invert-tag {
  color: var(--blob-tan) !important;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.5px;
}

.final-cta-content h2 .accent-weight {
  font-weight: 700;
  color: var(--white);
}

.final-cta-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 3.5rem;
}

/* --- Twin Action Trigger Button Group --- */
.final-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Primary Contrast Pill Option */
.primary-final-cta {
  background-color: var(--white);
  color: var(--text-dark);
}

.primary-final-cta:hover {
  background-color: var(--blob-tan);
  color: var(--white);
  transform: translateY(-3px);
}

/* Secondary Translucent Glass Option */
.secondary-final-cta {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.secondary-final-cta i {
  margin-left: 0.75rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.secondary-final-cta:hover {
  background-color: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* --- Media Queries Responsiveness (Responsive Compression Logic) --- */
@media (max-width: 1024px) {
  .final-cta-section {
    padding: 3rem 4% 6rem 4%;
  }

  .final-cta-card {
    padding: 4.5rem 3rem;
    border-radius: 32px;
  }

  .final-cta-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 2rem 5% 4rem 5%;
  }

  .final-cta-card {
    padding: 3.5rem 1.5rem;
    border-radius: 24px;
  }

  .final-cta-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .final-cta-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }

  /* Stack button systems on mobile to give maximum interaction space */
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .primary-final-cta, 
  .secondary-final-cta {
    width: 100%;
    max-width: 320px;
    padding: 1.1rem 1.5rem;
  }
}