/* Preascent Homepage Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--secondary-dark);
  background-color: var(--base-white);
  font-size: 18px;
}

/* Brand Colors as CSS Variables */
:root {
  --primary-dark: #07193B;     /* Deep Navy - main brand color */
  --secondary-dark: #2F3742;   /* Dark Slate - body text */
  --accent-color: #8BA8B7;     /* Pewter Blue - CTAs and highlights */
  --base-white: #FFFFFF;       /* Pure white backgrounds */
  --neutral-gray: #9AA3AD;     /* Secondary text and borders */
  --soft-background: #F6F7F9;  /* Off-white section backgrounds */
}

/* Navigation Component Styles - Start */
.preascent-navigation {
  background-color: var(--base-white);
  border-bottom: 1px solid var(--soft-background);
  position: sticky;
  top: 0;
  z-index: 50;
}

.preascent-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.preascent-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.preascent-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.preascent-nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  position: relative;
}

.preascent-nav-item {
  position: relative;
}

.preascent-nav-button {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.3s ease;
  font-family: inherit;
}

.preascent-nav-button:hover,
.preascent-nav-button[aria-expanded="true"] {
  color: var(--accent-color);
}

.preascent-nav-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  display: inline-block;
}

.preascent-nav-link:hover {
  color: var(--accent-color);
}

/* Dropdown Menu Styles */
.preascent-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--base-white);
  border: 1px solid var(--soft-background);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(7, 25, 59, 0.1);
  min-width: 800px;
  max-width: 1000px;
  padding: 32px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  pointer-events: none; /* Prevent blocking when hidden */
}

.preascent-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto; /* Allow clicks when visible */
}

.preascent-dropdown-header {
  border-bottom: 1px solid var(--soft-background);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.preascent-dropdown-overview {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: color 0.3s ease;
}

.preascent-dropdown-overview:hover {
  color: var(--primary-dark);
}

.preascent-dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.preascent-dropdown-text-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.preascent-dropdown-text-link:hover {
  color: var(--accent-color);
}

.preascent-dropdown-section {
  display: flex;
  flex-direction: column;
}

.preascent-dropdown-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-background);
}

.preascent-dropdown-item:last-child {
  border-bottom: none;
}

.preascent-dropdown-item-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.preascent-dropdown-item-title:hover {
  color: var(--accent-color);
}

.preascent-dropdown-item-description {
  color: var(--secondary-dark);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile menu toggle */
.preascent-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 24px;
  cursor: pointer;
}

/* Overlay for closing dropdown */
.preascent-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 40;
  display: none;
}

.preascent-dropdown-overlay.active {
  display: block;
}
/* Navigation Component Styles - End */

/* Hero Section Styles */
.preascent-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: background-image 0.8s ease-in-out;
}

/* Hero background variants for carousel */
.preascent-hero-slide-1 {
  background-image: url('/static/img/hero-1.png');
}

.preascent-hero-slide-2 {
  background-image: url('/static/img/hero-2.png');
}

.preascent-hero-slide-3 {
  background-image: url('/static/img/hero-3.png');
}

.preascent-hero-slide-4 {
  background-image: url('/static/img/hero-4.png');
}

/* Overlay for better text readability */
.preascent-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 25, 59, 0.5);
  z-index: 1;
}

.preascent-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.preascent-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  padding: 80px 24px 0 24px;
}

.preascent-hero-slide.active {
  opacity: 1;
}

.preascent-hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.preascent-hero-headline {
  font-size: 52px;
  font-weight: 700;
  color: var(--base-white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.preascent-hero-subtitle {
  font-size: 22px;
  color: var(--base-white);
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.preascent-hero-description {
  font-size: 18px;
  color: var(--base-white);
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.preascent-hero-cta {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.preascent-hero-cta:hover {
  transform: translateY(-2px);
}

.preascent-hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.preascent-hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-gray);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.preascent-hero-indicator.active {
  background-color: var(--accent-color);
}

.preascent-hero-visual {
  display: none;
}

/* Service Hero Component Styles */
.preascent-service-hero {
  background-color: var(--primary-dark);
  padding: 100px 0 80px 0;
  color: var(--base-white);
}

.preascent-service-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.preascent-service-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.preascent-service-hero-headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--base-white);
}

.preascent-service-hero-subtitle {
  font-size: 24px;
  color: var(--base-white);
  margin-bottom: 32px;
  opacity: 0.9;
}

.preascent-service-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--base-white);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .preascent-service-hero-headline {
    font-size: 32px;
  }

  .preascent-service-hero-subtitle {
    font-size: 20px;
  }

  .preascent-service-hero-description {
    font-size: 16px;
  }
}

/* Highlighted Service Component Styles */
.preascent-highlighted-service {
  background-color: var(--base-white);
  padding: 50px 0;
}

.preascent-service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



.preascent-service-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.preascent-service-graphic {
  width: 450px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #B8C5D1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: stretch;
}

.preascent-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preascent-service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.preascent-service-content p {
  color: var(--secondary-dark);
  margin-bottom: 24px;
  font-size: 18px;
}

.preascent-service-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.preascent-service-benefits li {
  color: var(--neutral-gray);
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.preascent-service-benefits li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.preascent-service-cta {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.preascent-service-cta:hover {
  transform: translateY(-2px);
}


/* Industry Hero Component Styles */
.preascent-industry-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2c5a 100%);
  padding: 120px 0 100px 0;
  color: var(--base-white);
}

.preascent-industry-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.preascent-industry-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.preascent-industry-hero-headline {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--base-white);
}

.preascent-industry-hero-subtitle {
  font-size: 28px;
  color: var(--base-white);
  margin-bottom: 36px;
  opacity: 0.9;
  font-weight: 500;
}

.preascent-industry-hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--base-white);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .preascent-industry-hero {
    padding: 80px 0 60px 0;
  }

  .preascent-industry-hero-headline {
    font-size: 36px;
  }

  .preascent-industry-hero-subtitle {
    font-size: 22px;
  }

  .preascent-industry-hero-description {
    font-size: 18px;
  }
}

/* Benefits & Services Component Styles */
.preascent-benefits-services {
  background-color: var(--soft-background);
  padding: 80px 0;
}

.preascent-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.preascent-benefits-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.preascent-benefits-header p {
  font-size: 18px;
  color: var(--secondary-dark);
  max-width: 600px;
  margin: 0 auto;
}

.preascent-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.preascent-benefit-card {
  background-color: var(--base-white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.preascent-benefit-card--linked {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.preascent-benefit-card--linked:hover {
  border-color: var(--accent-color);
}

.preascent-benefit-card--linked h4 {
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

.preascent-benefit-card--linked:hover h4 {
  color: var(--accent-color);
}

.preascent-benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.preascent-benefit-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.preascent-benefit-card p {
  font-size: 16px;
  color: var(--secondary-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .preascent-benefits-header h2 {
    font-size: 32px;
  }

  .preascent-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .preascent-benefit-card {
    padding: 30px;
  }
}

/* Case Study Results Enhancement */
.preascent-case-study-results {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.preascent-result-item {
  text-align: center;
}

.preascent-result-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.preascent-result-item span {
  font-size: 14px;
  color: var(--secondary-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .preascent-case-study-results {
    flex-direction: column;
    gap: 12px;
  }
}

/* Testimonials Component Styles */
.preascent-testimonials {
  background-color: var(--soft-background);
  padding: 80px 0;
}

.preascent-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.preascent-testimonials-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.preascent-testimonials-header p {
  font-size: 18px;
  color: var(--secondary-dark);
  opacity: 0.8;
}

.preascent-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.preascent-testimonial-card {
  background-color: var(--base-white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.preascent-testimonial-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.preascent-testimonial-content {
  margin-bottom: 30px;
}

.preascent-testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-dark);
  font-style: italic;
  position: relative;
}

.preascent-testimonial-content p::before {
  content: '"';
  font-size: 48px;
  color: var(--accent-color);
  position: absolute;
  left: -16px;
  top: -8px;
  font-family: serif;
}

.preascent-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preascent-author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.preascent-author-info p {
  font-size: 14px;
  color: var(--secondary-dark);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .preascent-testimonials-header h2 {
    font-size: 32px;
  }

  .preascent-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .preascent-testimonial-card {
    padding: 30px;
  }
}

/* Contact Page Styles */
.preascent-contact-section {
  background-color: var(--base-white);
  padding: 80px 0;
}

.preascent-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.preascent-contact-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.preascent-contact-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.preascent-contact-header p {
  font-size: 18px;
  color: var(--secondary-dark);
  max-width: 600px;
  margin: 0 auto;
}

.preascent-contact-content {
  display: flex;
  justify-content: center;
}

.preascent-contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.preascent-contact-item {
  margin-bottom: 30px;
}

.preascent-contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.preascent-contact-item p {
  font-size: 16px;
  color: var(--secondary-dark);
  line-height: 1.6;
}

.preascent-contact-form {
  background-color: var(--soft-background);
  padding: 40px;
  border-radius: 8px;
  width: 100%;
  max-width: 1200px;
}

.preascent-form-group {
  margin-bottom: 24px;
}

.preascent-form-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.preascent-form-input,
.preascent-form-select,
.preascent-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: var(--base-white);
  font-size: 16px;
  color: var(--secondary-dark);
  transition: border-color 0.3s ease;
}

.preascent-form-input:focus,
.preascent-form-select:focus,
.preascent-form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.preascent-form-submit {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.preascent-form-submit:hover {
  background-color: #7a9fb0;
}

/* Meeting Section Styles */
.preascent-meeting-section {
  background-color: var(--base-white);
  padding: 80px 0;
  border-top: 1px solid var(--soft-background);
  border-bottom: 1px solid var(--soft-background);
}

.preascent-meeting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-meeting-header {
  margin-bottom: 56px;
  text-align: left;
}

.preascent-meeting-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
}

.preascent-meeting-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.preascent-meeting-header p {
  font-size: 18px;
  color: var(--neutral-gray);
  max-width: 560px;
}

.preascent-meeting-options {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: start;
}

.preascent-option-divider {
  background-color: #D8DDE3;
  width: 1px;
  align-self: stretch;
  min-height: 180px;
}

.preascent-meeting-option {
  padding: 0;
  text-align: left;
}

.preascent-option-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  display: block;
  margin-bottom: 14px;
}

.preascent-option-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.preascent-meeting-option p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-dark);
  margin-bottom: 28px;
}

.preascent-option-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--base-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  transition: background-color 0.2s ease;
}

.preascent-option-button:hover {
  background-color: var(--primary-dark);
}

/* Content Page Styles */
.preascent-content-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2c5a 100%);
  padding: 100px 0 80px 0;
  color: var(--base-white);
}

.preascent-content-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.preascent-content-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.preascent-content-category {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.preascent-content-date {
  font-size: 16px;
  opacity: 0.8;
}

.preascent-content-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.preascent-content-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.preascent-content-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.preascent-stat-item {
  text-align: center;
}

.preascent-stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.preascent-stat-item span {
  font-size: 14px;
  opacity: 0.8;
}

.preascent-content-section {
  background-color: var(--base-white);
  padding: 80px 0;
}

.preascent-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.preascent-content-toc {
  background-color: var(--soft-background);
  padding: 30px;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}

.preascent-content-toc h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.preascent-content-toc ul {
  list-style: none;
}

.preascent-content-toc li {
  margin-bottom: 12px;
}

.preascent-content-toc a {
  color: var(--secondary-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.preascent-content-toc a:hover {
  color: var(--accent-color);
}

.preascent-content-download {
  background-color: var(--primary-dark);
  color: var(--base-white);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.preascent-content-download h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.preascent-content-download p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.preascent-download-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preascent-download-input {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.preascent-download-btn {
  background-color: var(--accent-color);
  color: var(--base-white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.preascent-content-main {
  max-width: none;
}

.preascent-article h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 40px 0 20px 0;
}

.preascent-article h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 32px 0 16px 0;
}

.preascent-article h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 24px 0 12px 0;
}

.preascent-article p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.preascent-article ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.preascent-article li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-dark);
  margin-bottom: 8px;
}

.preascent-highlight-box {
  background-color: var(--soft-background);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  margin: 32px 0;
}

.preascent-findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.preascent-finding-card {
  background-color: var(--soft-background);
  padding: 24px;
  border-radius: 8px;
}

.preascent-finding-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.preascent-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.preascent-pillar {
  background-color: var(--base-white);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid var(--soft-background);
  text-align: center;
}

.preascent-pillar h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.preascent-pillar p {
  font-size: 14px;
  color: var(--secondary-dark);
}

@media (max-width: 768px) {
  .preascent-contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .preascent-meeting-options {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .preascent-option-divider {
    display: none;
  }

  .preascent-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .preascent-content-title {
    font-size: 40px;
  }

  .preascent-content-stats {
    flex-direction: column;
    gap: 30px;
  }
}

/* Get-in-Touch CTA Component Styles */
.preascent-cta-section {
  background-color: var(--primary-dark);
  padding: 50px 0;
  text-align: center;
}

.preascent-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-cta-headline {
  font-size: 40px;
  font-weight: 700;
  color: var(--base-white);
  margin-bottom: 16px;
}

.preascent-cta-description {
  font-size: 20px;
  color: var(--base-white);
  margin-bottom: 30px;
  opacity: 0.9;
}

.preascent-cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.preascent-cta-primary {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.preascent-cta-secondary {
  background-color: transparent;
  color: var(--base-white);
  padding: 18px 36px;
  border: 2px solid var(--base-white);
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}

.preascent-cta-primary:hover {
  transform: translateY(-2px);
}

.preascent-cta-secondary:hover {
  background-color: var(--base-white);
  color: var(--primary-dark);
}

.preascent-cta-icons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.preascent-cta-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--base-white);
  font-size: 14px;
}

.preascent-cta-icon {
  color: var(--accent-color);
  font-size: 20px;
}

/* Insights Selection Component Styles */
.preascent-insights {
  background-color: var(--soft-background);
  padding: 50px 0;
}

.preascent-insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-insights-header {
  text-align: center;
  margin-bottom: 40px;
}

.preascent-insights-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
}

.preascent-featured-content {
  background-color: var(--base-white);
  padding: 40px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.preascent-video-thumbnail {
  width: 300px;
  height: 200px;
  background-color: var(--soft-background);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.preascent-play-button {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-white);
  font-size: 24px;
}

.preascent-featured-content-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.preascent-featured-content-info p {
  color: var(--secondary-dark);
  margin-bottom: 24px;
  font-size: 18px;
}

.preascent-featured-cta {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
}

.preascent-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.preascent-content-card {
  background-color: var(--base-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.preascent-content-card:hover {
  transform: translateY(-4px);
}

.preascent-content-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-white);
  font-weight: 700;
}

.preascent-content-body {
  padding: 20px;
}

.preascent-content-type {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

.preascent-content-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.preascent-content-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.preascent-insights-global-cta {
  text-align: center;
}

.preascent-insights-view-all {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
}

/* Case Studies Selection Component Styles */
.preascent-case-studies {
  background-color: var(--base-white);
  padding: 50px 0;
}

.preascent-case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-case-studies-header {
  text-align: center;
  margin-bottom: 40px;
}

.preascent-case-studies-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-dark);
}

.preascent-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.preascent-case-study-card {
  background-color: var(--base-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neutral-gray);
  transition: transform 0.3s ease;
}

.preascent-case-study-card:hover {
  transform: translateY(-8px);
}

.preascent-case-study-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-white);
  font-size: 18px;
}

.preascent-case-study-body {
  padding: 24px;
}

.preascent-case-study-badge {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.preascent-case-study-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.preascent-case-study-description {
  color: var(--secondary-dark);
  font-size: 16px;
  margin-bottom: 20px;
}

.preascent-case-study-cta {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 14px 28px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
}

.preascent-case-studies-global-cta {
  text-align: center;
}

.preascent-case-studies-view-all {
  background-color: var(--accent-color);
  color: var(--base-white);
  padding: 18px 36px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
}

/* Footer Component Styles */
.preascent-footer {
  background-color: var(--primary-dark);
  padding: 60px 0 40px;
  color: var(--base-white);
}

.preascent-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.preascent-footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--base-white);
  margin-bottom: 20px;
}

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

.preascent-footer-links li {
  margin-bottom: 12px;
}

.preascent-footer-links a {
  color: var(--neutral-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.preascent-footer-links a:hover {
  color: var(--accent-color);
}

.preascent-footer-social {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--secondary-dark);
}

.preascent-footer-social h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.preascent-social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.preascent-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--base-white);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.preascent-social-link:hover {
  transform: scale(1.1);
}

.preascent-footer-copyright {
  color: var(--neutral-gray);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .preascent-nav-menu {
    display: none;
  }
  
  .preascent-mobile-menu-toggle {
    display: block;
  }
  
  /* Hide dropdowns on mobile - they would be handled by mobile menu */
  .preascent-dropdown-menu {
    display: none;
  }
  
  .preascent-hero {
    height: 400px;
    background-position: center center;
  }
  
  .preascent-hero-container {
    padding: 50px 20px 0 20px;
  }

  .preascent-hero-slide {
    justify-content: center;
    text-align: center;
    padding: 50px 20px 0 20px;
    align-items: flex-start;
  }
  
  .preascent-hero-headline {
    font-size: 36px;
  }
  
  .preascent-hero-visual {
    display: none;
  }
  
  .preascent-service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .preascent-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .preascent-featured-content {
    grid-template-columns: 1fr;
  }
  
  .preascent-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .preascent-case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .preascent-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .preascent-social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  /* Adjust dropdown width for tablets */
  .preascent-dropdown-menu {
    min-width: 600px;
    max-width: 800px;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .preascent-logo-img {
    height: 32px;
  }

  .preascent-hero {
    height: 500px;
  }

  .preascent-hero-container {
    padding: 60px 20px 0 20px;
  }

  .preascent-hero-slide {
    justify-content: center;
    text-align: center;
    padding: 60px 20px 0 20px;
  }

  .preascent-hero-headline {
    font-size: 28px;
  }

  .preascent-hero-subtitle {
    font-size: 18px;
  }

  .preascent-hero-description {
    font-size: 16px;
  }
  
  .preascent-content-grid {
    grid-template-columns: 1fr;
  }
  
  .preascent-cta-icons {
    flex-direction: column;
    gap: 16px;
  }
}

/* Prose Component Styles */
.preascent-prose-section {
  background-color: var(--base-white);
  padding: 80px 0;
}

.preascent-prose-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-prose-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--soft-background);
}

.preascent-prose-paragraph {
  font-size: 20px;
  line-height: 1.8;
  color: var(--secondary-dark);
  margin-bottom: 32px;
}

.preascent-prose-soft {
  background-color: var(--soft-background);
}

.preascent-prose-pullquote {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.4;
  border-left: 4px solid var(--accent-color);
  padding: 8px 0 8px 32px;
  margin: 48px 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .preascent-prose-paragraph {
    font-size: 18px;
  }

  .preascent-prose-pullquote {
    font-size: 22px;
  }
}

/* News List Component Styles */
.preascent-news-section {
  background-color: var(--base-white);
  padding: 80px 0;
}

.preascent-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.preascent-news-list {
  display: flex;
  flex-direction: column;
}

.preascent-news-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--soft-background);
  transition: border-top-color 0.2s ease;
}

.preascent-news-row:last-child {
  border-bottom: 1px solid var(--soft-background);
}

.preascent-news-row:hover {
  border-top-color: var(--accent-color);
}

.preascent-news-row-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.preascent-news-date {
  font-size: 15px;
  color: var(--neutral-gray);
}

.preascent-news-category {
  display: inline-block;
  background-color: var(--soft-background);
  color: var(--secondary-dark);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.preascent-news-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.preascent-news-summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.preascent-news-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.preascent-news-link:hover {
  color: var(--primary-dark);
}

.preascent-news-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--neutral-gray);
  font-size: 18px;
}

@media (max-width: 768px) {
  .preascent-news-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
}

/* Fixed Sidebar Styles */
.preascent-content-sidebar-fixed {
  position: sticky;
  top: 120px;
  height: fit-content;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.preascent-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Form Alternative Email Styling */
.preascent-form-alternative {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
  text-align: center;
}

.preascent-form-alternative p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.preascent-email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.preascent-email-link:hover {
  text-decoration: underline;
}