/* ============================================
   PAGES.CSS - Extracted from JS components
   ============================================ */

/* ============================================
   CERTIFICATIONS PAGE
   ============================================ */
.certifications-page {
  background: #f8fafc;
  min-height: 80vh;
}

.cert-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.cert-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.cert-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cert-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.cert-section {
  padding: 60px 40px 80px;
}

.cert-content {
  max-width: 700px;
  margin: 0 auto;
}

.cert-intro {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.cert-item:hover {
  border-color: #1e40af;
  background: #f8fafc;
}

.cert-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.cert-icon svg {
  width: 22px;
  height: 22px;
  color: #dc2626;
}

.cert-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.cert-format {
  font-size: 13px;
  color: #64748b;
}

.cert-download {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color 0.2s;
}

.cert-item:hover .cert-download {
  color: #1e40af;
}

.cert-download svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .cert-hero {
    padding: 60px 24px 50px;
  }

  .cert-hero h1 {
    font-size: 32px;
  }

  .cert-section {
    padding: 40px 24px 60px;
  }

  .cert-item {
    padding: 14px 16px;
  }

  .cert-icon {
    width: 36px;
    height: 36px;
  }

  .cert-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  background: #f8fafc;
  min-height: 80vh;
}

.contact-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.contact-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-section {
  padding: 80px 40px;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  color: #475569;
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.contact-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: #94a3b8;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.contact-form-btn:hover {
  background: #7d8a9a;
}

.contact-form-btn svg {
  width: 14px;
  height: 14px;
}

.contact-form-btn-secondary {
  background: #a8b2bd;
}

.contact-form-btn-secondary:hover {
  background: #8e99a6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
}

.contact-details a:hover {
  color: #1e40af;
}

.contact-note {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 12px;
}

.contact-address {
  font-style: normal;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.contact-hours {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-hours h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.contact-direct {
  margin-top: 12px !important;
}

.contact-direct a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.contact-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.contact-link:hover {
  border-color: #1e40af;
  color: #1e40af;
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 60px 24px 50px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-section {
    padding: 50px 24px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-page {
  background: #f8fafc;
  min-height: 80vh;
}

.support-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 80px 40px 60px;
  text-align: center;
}

.support-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.support-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.support-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.support-section {
  padding: 60px 40px 80px;
}

.support-content {
  max-width: 1000px;
  margin: 0 auto;
}

.support-intro {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.support-intro p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.support-intro a {
  color: #1e40af;
  text-decoration: none;
}

.support-intro a:hover {
  text-decoration: underline;
}

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

.support-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.support-card-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.support-card-icon svg {
  width: 22px;
  height: 22px;
  color: #1e40af;
}

.support-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.support-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.support-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: #4b5c73;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.support-card-btn:hover {
  background: #3d4d61;
}

.support-card-btn svg {
  width: 14px;
  height: 14px;
}

.support-contact-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.support-contact-icon {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-contact-icon svg {
  width: 28px;
  height: 28px;
  color: #1e40af;
}

.support-contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.support-contact-info p {
  font-size: 15px;
  color: #475569;
  margin: 0;
}

.support-contact-info a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.support-contact-info a:hover {
  text-decoration: underline;
}

.support-hours {
  font-size: 14px !important;
  color: #94a3b8 !important;
  margin-top: 6px !important;
}

.support-email-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
}

.support-email-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}

.support-email-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-email-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.support-email-item:hover {
  background: #f1f5f9;
}

.support-email-label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

.support-email-address {
  font-size: 15px;
  font-weight: 600;
  color: #1e40af;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .support-hero {
    padding: 60px 24px 40px;
  }

  .support-hero h1 {
    font-size: 32px;
  }

  .support-section {
    padding: 40px 24px 60px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .support-email-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
  background: #f8fafc;
  min-height: 80vh;
}

.faq-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.faq-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.faq-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.faq-section {
  padding: 60px 40px 80px;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.faq-item.expanded .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid #e2e8f0;
}

.faq-item.expanded .faq-answer {
  display: block;
}

.faq-answer p,
.faq-answer li {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 16px 0 0;
}

.faq-answer p:first-child {
  margin-top: 20px;
}

.faq-answer ol,
.faq-answer ul {
  margin: 16px 0 0;
  padding-left: 24px;
}

.faq-answer li {
  margin: 8px 0;
}

.faq-answer ul ul {
  margin-top: 8px;
}

.faq-answer a {
  color: #1e40af;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #334155;
}

.faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.faq-answer strong {
  color: #0f172a;
}

.faq-context {
  color: #64748b !important;
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid #e2e8f0;
}

.faq-contact {
  margin-top: 48px;
  text-align: center;
  padding: 24px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.faq-contact p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.faq-contact a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.faq-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-hero {
    padding: 60px 24px 50px;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-section {
    padding: 40px 24px 60px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
  background: #f8fafc;
}

.about-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.about-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.about-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.about-toc-wrapper {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 40px;
}

.about-toc {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-toc a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.about-toc a:hover {
  color: #1e40af;
}

.toc-sep {
  color: #cbd5e1;
  font-size: 10px;
}

.about-section {
  padding: 50px 40px;
}

.about-location {
  background: white;
}

.about-company {
  background: #f8fafc;
}

.about-certs {
  background: white;
  padding: 40px 40px;
}

.certs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.certs-intro h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.certs-intro p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.certs-link {
  font-size: 14px;
  font-weight: 500;
  color: #1e40af;
  text-decoration: none;
}

.certs-link:hover {
  text-decoration: underline;
}

.certs-badges {
  display: flex;
  gap: 12px;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cert-badge:hover {
  border-color: #1e40af;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cert-badge img {
  max-height: 56px;
  max-width: 100px;
  object-fit: contain;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: start;
}

.location-details h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.location-addr {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 12px;
}

.location-hours {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}

.location-phone {
  margin: 0;
}

.location-phone a {
  font-size: 15px;
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
}

.location-phone a:hover {
  text-decoration: underline;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content p strong {
  color: #0f172a;
  font-weight: 600;
}

.competencies-intro {
  margin-top: 32px;
  font-weight: 500;
  color: #334155 !important;
}

@media (max-width: 800px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-map iframe {
    height: 200px;
  }

  .certs-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .certs-badges {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 60px 24px 50px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-section {
    padding: 40px 24px;
  }

  .about-certs {
    padding: 32px 24px;
  }

  .location-details h2 {
    font-size: 20px;
  }

  .cert-badge {
    height: 64px;
    padding: 10px 12px;
  }

  .cert-badge img {
    max-height: 44px;
    max-width: 80px;
  }
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-page {
  background: #f8fafc;
}

.careers-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 120px 40px 100px;
  text-align: center;
}

.careers-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.careers-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.careers-jobs {
  padding: 100px 40px;
  background: #f8fafc;
}

.careers-jobs-content {
  max-width: 900px;
  margin: 0 auto;
}

.careers-jobs h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0a0a0a;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.jobs-intro {
  text-align: center;
  color: #64748b;
  font-size: 17px;
  margin-bottom: 50px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}

.job-title-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.job-meta span {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta svg {
  color: #94a3b8;
}

.job-type, .job-posted {
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.job-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.job-toggle:hover {
  background: #f1f5f9;
}

.job-toggle svg {
  width: 24px;
  height: 24px;
  color: #64748b;
  transition: transform 0.3s ease;
}

.job-card.expanded .job-toggle svg {
  transform: rotate(180deg);
}

.job-details {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.job-card.expanded .job-details {
  display: block;
}

.job-description {
  margin-bottom: 28px;
}

.job-description p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.job-description p:last-child {
  margin-bottom: 0;
}

.job-section {
  margin-bottom: 28px;
}

.job-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.job-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.job-notes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.job-notes p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.job-notes p:last-child {
  margin-bottom: 0;
}

.careers-cta {
  padding: 60px 40px;
  background: white;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.careers-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.careers-cta p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.careers-cta a {
  color: #1e40af;
  text-decoration: none;
}

.careers-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 80px 24px 60px;
  }

  .careers-hero h1 {
    font-size: 36px;
  }

  .careers-hero-sub {
    font-size: 17px;
  }

  .careers-jobs {
    padding: 60px 24px;
  }

  .careers-cta {
    padding: 40px 24px;
  }

  .careers-jobs h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .job-card {
    padding: 24px;
  }

  .job-title-section h3 {
    font-size: 18px;
  }

  .job-meta {
    gap: 10px;
  }

  .job-header {
    flex-direction: column;
  }

  .job-toggle {
    position: absolute;
    right: 24px;
    top: 24px;
  }

  .job-card {
    position: relative;
  }
}

/* ============================================
   ALL APPLICATIONS PAGE
   ============================================ */
body.app-page .main-nav {
  position: relative;
}

.all-apps-page {
  min-height: 100vh;
  background: #fff;
}

.all-apps-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 50px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.back-link:hover {
  color: white;
}

.all-apps-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.all-apps-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.all-apps-content {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  gap: 50px;
}

.all-apps-toc {
  flex-shrink: 0;
  width: 180px;
  position: sticky;
  top: 30px;
  align-self: flex-start;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding-right: 10px;
}

.all-apps-toc::-webkit-scrollbar {
  width: 4px;
}

.all-apps-toc::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.all-apps-toc::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.all-apps-toc::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.toc-link {
  display: block;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: color 0.2s, border-color 0.2s;
}

.toc-link:hover {
  color: #1e3a5f;
  border-left-color: #1e3a5f;
}

.all-apps-main {
  flex: 1;
  min-width: 0;
}

.app-category {
  margin-bottom: 60px;
  scroll-margin-top: 20px;
}

.app-category h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1e3a5f;
}

.app-entry {
  border-bottom: 1px solid #eee;
  scroll-margin-top: 20px;
  transition: background-color 0.5s ease;
}

.app-entry:last-child {
  border-bottom: none;
}

.app-entry.highlighted {
  background-color: rgba(30, 58, 95, 0.08);
}

.app-entry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.app-entry-header:hover h3 {
  color: #1e3a5f;
}

.app-entry-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  transition: color 0.2s;
}

.app-entry-chevron {
  flex-shrink: 0;
  color: #999;
  transition: transform 0.3s ease;
}

.app-entry.expanded .app-entry-chevron {
  transform: rotate(180deg);
}

.app-entry-body {
  display: none;
  padding: 0 0 30px 0;
}

.app-entry.expanded .app-entry-body {
  display: block;
}

.app-entry-image {
  margin-bottom: 24px;
}

.app-entry-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.app-entry-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.app-entry-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .all-apps-content {
    flex-direction: column;
    padding: 24px;
    gap: 30px;
  }

  .all-apps-toc {
    width: 100%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .toc-title {
    width: 100%;
  }

  .all-apps-toc .toc-link {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
  }

  .all-apps-toc .toc-link:hover {
    background: #e5e7eb;
  }
}

@media (max-width: 600px) {
  .all-apps-header {
    padding: 80px 24px 40px;
  }

  .all-apps-header h1 {
    font-size: 28px;
  }
}

/* ============================================
   MANUALS & LITERATURE PAGE
   ============================================ */
.lit-page {
  background: #f8fafc;
  min-height: 80vh;
}

.lit-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.lit-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.lit-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}

.lit-hero-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.lit-section {
  padding: 60px 40px 80px;
}

.lit-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.lit-sidebar {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.lit-sidebar h3 {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
}

.lit-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lit-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}

.lit-cat-btn:hover {
  background: #f1f5f9;
}

.lit-cat-btn.active {
  background: #eff6ff;
  color: #1e40af;
  font-weight: 600;
}

.lit-main {
  min-width: 0;
}

.lit-search {
  position: relative;
  margin-bottom: 28px;
}

.lit-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lit-search input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.lit-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

.lit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lit-subcategory {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.lit-subcat-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.lit-subcat-header:hover {
  background: #f8fafc;
}

.lit-subcat-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.lit-subcat-count {
  font-size: 13px;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 12px;
}

.lit-subcat-arrow {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.2s;
}

.lit-subcategory.expanded .lit-subcat-arrow {
  transform: rotate(180deg);
}

.lit-subcat-content {
  display: none;
  padding: 0 20px 16px;
}

.lit-subcategory.expanded .lit-subcat-content {
  display: block;
}

.lit-subcat-content .lit-item {
  margin-top: 8px;
}

.lit-subcat-content .lit-item:first-child {
  margin-top: 0;
}

.lit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.lit-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.lit-icon {
  width: 40px;
  height: 40px;
  background: #fef2f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lit-icon svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
}

.lit-info {
  flex: 1;
  min-width: 0;
}

.lit-title {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lit-download {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.lit-download svg {
  width: 16px;
  height: 16px;
  color: #64748b;
}

.lit-item:hover .lit-download {
  background: #1e40af;
  border-color: #1e40af;
}

.lit-item:hover .lit-download svg {
  color: white;
}

.lit-no-results {
  text-align: center;
  padding: 60px;
  color: #64748b;
  font-size: 15px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.lit-item-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 1000px) {
  .lit-content {
    grid-template-columns: 1fr;
  }

  .lit-sidebar {
    position: static;
  }

  .lit-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lit-cat-btn {
    width: auto;
    padding: 8px 14px;
  }
}

@media (max-width: 600px) {
  .lit-hero {
    padding: 60px 24px 50px;
  }

  .lit-hero h1 {
    font-size: 32px;
  }

  .lit-section {
    padding: 40px 20px 60px;
  }

  .lit-item {
    padding: 12px;
  }

  .lit-icon {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   APPLICATIONS PAGE (Full-screen showcase)
   ============================================ */
.applications-page {
  background: #0a0a0a;
  position: relative;
  overflow: visible;
}

.app-logo-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

.app-fixed-logo {
  position: sticky;
  top: 30px;
  float: right;
  margin-right: 40px;
  margin-top: 30px;
  height: 28px;
  opacity: 0.9;
}

.app-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 60px 40px 100px;
  position: relative;
}

.app-hero-content {
  max-width: 900px;
}

.app-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.app-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 24px;
}

.app-hero .app-toc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.app-hero .toc-link {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: color 0.2s;
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}

.app-hero .toc-link:hover {
  color: white !important;
  background: none !important;
}

.app-hero .toc-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
}

.app-hero-scroll {
  position: absolute;
  bottom: 80px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.app-hero-scroll:hover {
  color: white;
}

.app-hero-scroll svg {
  width: 48px;
  height: 48px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

.view-all-link {
  position: absolute;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.app-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.app-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

/* Admin overlay_opacity: adds uniform layer + controls right edge */
.app-section-overlay[style*="--overlay-opacity"] {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,var(--overlay-opacity)) 100%),
    rgba(0,0,0,var(--overlay-opacity));
}

.app-section-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.app-section.visible .app-section-content {
  opacity: 1;
  transform: translateY(0);
}

.app-section h2 {
  font-size: 56px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.app-section h3 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.app-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.app-section-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-section-story .challenge {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
}

.app-section-story .solution {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

.app-section-story .details {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-section-story .details li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 20px;
  position: relative;
}

.app-section-story .details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin-top: 8px;
  transition: color 0.2s;
}

.details-toggle:hover {
  color: rgba(255, 255, 255, 0.6);
}

.details-toggle svg {
  transition: transform 0.3s;
}

.details-toggle.expanded svg {
  transform: rotate(180deg);
}

.app-section-story .details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.app-section-story .details.expanded {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}

.app-section.has-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}


.app-section-problem {
  position: relative;
  z-index: 2;
  padding: 60px;
  padding-right: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.app-section.visible .app-section-problem {
  opacity: 1;
  transform: translateY(0);
}

.app-section-problem .challenge {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
}

.app-section-solution {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  padding-left: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out 0.15s;
}

.app-section.visible .app-section-solution {
  opacity: 1;
  transform: translateY(0);
}

.solution-product {
  position: relative;
  margin-bottom: 24px;
}

.solution-product::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.solution-product img {
  position: relative;
  z-index: 1;
  height: 260px;
  width: auto;
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.7));
  transition: opacity 0.3s ease;
}

.solution-product img.product-loading {
  opacity: 0.5;
  animation: pulse-loading 1.5s ease-in-out infinite;
}

.solution-product img.loaded {
  opacity: 1;
  animation: none;
}

@keyframes pulse-loading {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.solution-info {
  text-align: center;
  max-width: 380px;
}

.solution-model {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.app-section .solution-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 1) !important;
  line-height: 1.6;
  margin: 0 0 20px 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.solution-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(4px);
}

.solution-cta svg {
  transition: transform 0.25s ease;
}

.solution-cta:hover svg {
  transform: translateX(3px);
}

.problem-learn-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.problem-learn-more:hover {
  color: rgba(255, 255, 255, 0.95);
}

.app-cta {
  padding: 120px 40px;
  background: #f8fafc;
  text-align: center;
}

.app-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.app-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.app-cta p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.app-cta-btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.app-cta-btn.primary {
  background: #1e40af;
  color: white;
}

.app-cta-btn.primary:hover {
  background: #1e3a8a;
}

.app-cta-btn.secondary {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.app-cta-btn.secondary:hover {
  background: #1e40af;
  color: white;
}

@media (max-width: 1024px) {
  .app-section.has-product {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .app-section-problem {
    padding: 60px 40px 30px;
  }

  .app-section-solution {
    padding: 30px 40px 60px;
  }

  .solution-product img {
    height: 200px;
  }

  .solution-product::before {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .app-hero {
    min-height: 50vh;
    padding: 40px 24px;
  }

  .app-hero h1 {
    font-size: 32px;
  }

  .app-hero p {
    font-size: 15px;
  }

  .app-hero-scroll {
    bottom: 30px;
  }

  .app-section {
    min-height: auto;
    padding: 80px 0;
  }

  .app-section.has-product {
    padding: 0;
  }

  .app-section-content {
    padding: 40px 24px;
    max-width: 100%;
  }

  .app-section-problem {
    padding: 60px 24px 24px;
  }

  .app-section-solution {
    padding: 24px 24px 60px;
  }

  .app-section h2 {
    font-size: 36px;
  }

  .app-section h3 {
    font-size: 17px;
  }

  .app-section p,
  .app-section-problem .challenge {
    font-size: 18px;
  }

  .solution-product img {
    height: 160px;
  }

  .solution-product::before {
    width: 220px;
    height: 220px;
  }

  .app-section .solution-desc {
    font-size: 15px;
  }

  .app-cta {
    padding: 80px 24px;
  }

  .app-cta h2 {
    font-size: 28px;
  }
}

/* ============================================
   CMS PAGE (Generic dynamic pages)
   ============================================ */
.cms-page {
  background: #f8fafc;
  min-height: 80vh;
}

.cms-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.cms-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.cms-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin: 0;
}

.cms-section {
  padding: 60px 40px 80px;
}

.cms-section .page-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px 48px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.page-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #0a0a0a;
  letter-spacing: -0.5px;
}

.page-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #0a0a0a;
}

.page-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #0a0a0a;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.page-content a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}

.page-content blockquote {
  border-left: 4px solid #1e40af;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #64748b;
}

.page-content code {
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

.page-content pre {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.page-content pre code {
  background: none;
  padding: 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.page-content th, .page-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.page-content th {
  font-weight: 600;
  background: #f8fafc;
}

@media (max-width: 600px) {
  .cms-hero {
    padding: 60px 24px 50px;
  }

  .cms-hero h1 {
    font-size: 32px;
  }

  .cms-section {
    padding: 40px 24px 60px;
  }

  .cms-section .page-content {
    padding: 24px;
  }
}
