:root {
  --primary: #4e4bff;
  --blueMid: #8a7aff;
  --light: #f5f6ff;
}
body {
  background: #f3f4fb;
  font-family: "Poppins", Arial;
}
.btn {
  background: var(--light);
  color: var(--blueMid);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover {
  color: var(--blueMid);
  transform: translateY(-2px);
}
/*header*/
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.main-nav {
  transition: 0.3s ease;
  background: transparent;
}

.main-nav.scrolled {
  background: var(--blueMid);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.navbar-toggler {
  border: none;
  color: var(--light) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.nav-link {
  color: var(--light) !important;
  font-weight: 500;
}
.nav-link.active {
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: 6px;
}

.nav-dropdown-menu {
  background: #fff;
  border: 1px solid rgba(79, 70, 229, .16);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .14);
  display: grid;
  gap: 4px;
  left: 50%;
  min-width: 170px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1050;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  border-radius: 8px;
  color: #071431;
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #f0edff;
  color: var(--primary);
}

.mobile-nav-group {
  display: grid;
  gap: 4px;
}

.mobile-nav-group > span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0 0;
}
.brand-logo i {
  color: var(--light) !important;
}
.brand-logo h4 {
  color: var(--light) !important;
}

.hero-modern {
  padding: 120px 0 90px;
  background: linear-gradient(
    180deg,
    var(--heroGradientStart, #4b3df2) 0%,
    var(--heroGradientMid, #8a7aff) 22%,
    var(--heroGradientSoft, #bfc4ff) 58%,
    var(--heroGradientEnd, #ffffff) 100%
  );
  border-radius: 0 0 35px 35px;
  color: #fff;
}

/* TEXT */
.hero-title {
  font-weight: 800;
  font-size: 38px;
  line-height: 1.2;
}

.hero-desc {
  margin-top: 10px;
  max-width: 420px;
  opacity: 0.9;
  color: rgb(255, 255, 255);
}

/* BUTTONS */
.hero-btn-primary {
  background: #fff;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 600;
}

.hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
}
/* IMAGE */
.hero-img {
  padding: 10px 18px;
  position: relative;
  width: 100%;
  left: 1px;
  top: 60px;
  z-index: -0;
}

/* RATING BOX */
.hero-rating {
  background: var(--blueMid);
  border-radius: 16px;
  padding: 10px 18px;
  width: max-content;
  margin-top: 12px;
}

.rating-value {
  font-weight: 800;
  font-size: 20px;
}

.rating-text {
  opacity: 0.9;
  margin-left: 6px;
}
/* Appointment Bar */
.appointment-bar {
  background: var(--light);
  border-radius: 15px;
  padding: 16px 20px;
  margin-top: -50px; /* يطلع فوق الهيرو */
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* حقول الفورم */
.form-field {
  border-radius: 15px;
  height: 40px;
}

/* زر الحجز */
.make-btn {
  background: var(--blueMid);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.2s;
}

.make-btn:hover {
  opacity: 0.9;
  color: var(--blueMid);
  transform: translateY(-2px);
}

.appointment-bar .website-dynamic-form {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
}

.appointment-bar .website-form-grid {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.appointment-bar .website-form-submit {
  min-height: 46px;
  padding-inline: 22px;
}

.website-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.website-form-grid label,
.website-form-grid .website-form-heading,
.website-form-grid .website-form-text {
  color: #071431;
  display: grid;
  font-weight: 700;
  gap: 8px;
  margin: 0;
}

.website-form-grid .full {
  grid-column: 1 / -1;
}

.website-form-grid input,
.website-form-grid select,
.website-form-grid textarea {
  background: #fff;
  border: 1px solid #d9e3f0;
  border-radius: 14px;
  color: #071431;
  min-height: 46px;
  padding: 10px 14px;
}

.website-form-grid textarea {
  min-height: 110px;
}

.site-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 1080;
}

.site-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-modal-backdrop {
  background: rgba(7, 20, 49, .48);
  inset: 0;
  position: absolute;
}

.site-modal-panel {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(7, 20, 49, .24);
  margin: 7vh auto;
  max-height: 86vh;
  max-width: 680px;
  overflow: auto;
  padding: 24px;
  position: relative;
  width: min(calc(100vw - 32px), 680px);
}

.site-modal-head {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.site-modal-head span {
  color: #071431;
  font-size: 24px;
  font-weight: 800;
}

.site-modal-head p {
  color: #53617d;
  margin: 4px 0 0;
}

.site-modal-close {
  align-items: center;
  background: #f3f4fb;
  border: 0;
  border-radius: 999px;
  color: #071431;
  display: inline-flex;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  width: 38px;
}
/* Features Section */
.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 42px;
  color: var(--blueMid);
  margin-bottom: 6px;
}
.feature-icon-img {
  height: 42px;
  margin-bottom: 6px;
  object-fit: contain;
  width: 42px;
}

.feature-item h5 {
  font-weight: 700;
}

.feature-item p {
  color: #666;
}

.home-content-section {
  scroll-margin-top: 96px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 6px 0 8px;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dfe4f6;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(30, 41, 59, .06);
}

.site-info-card,
.site-person-card,
.pricing-card,
.solution-card,
.listing-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e8f6;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(32, 39, 77, .07);
}

.site-card-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  font-size: 34px;
  margin-bottom: 18px;
}

.site-info-card h3,
.site-person-card h3,
.pricing-card h3,
.solution-card h3,
.listing-card h3 {
  font-size: 21px;
  font-weight: 900;
  color: #12152d;
  margin-bottom: 10px;
}

.site-info-card p,
.site-person-card p,
.pricing-card p,
.solution-card p,
.listing-card p {
  color: #53617d;
  line-height: 1.7;
  margin-bottom: 0;
}

.site-person-card {
  padding: 0;
  overflow: hidden;
}

.site-person-card img,
.solution-card > img,
.listing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.site-person-card div,
.solution-card div {
  padding: 24px;
}

.site-person-card span,
.pricing-card span,
.solution-card span {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}

.pricing-card strong {
  display: block;
  color: #12152d;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #36415d;
  font-weight: 600;
}

.pricing-card li i {
  color: var(--primary);
}

.content-page {
  padding-top: 0px;
}

.content-hero {
  background: linear-gradient(180deg, var(--heroGradientStart) 0%, var(--heroGradientMid) 48%, var(--heroGradientSoft) 78%, var(--heroGradientEnd) 100%);
  color: #fff;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  padding: 90px 0 76px;
  text-align: center;
}

.content-hero h1 {
  max-width: 820px;
  margin: 10px auto;
  font-size: 40px;
  font-weight: 900;
}

.content-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination-wrap a,
.pagination-wrap span {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dfe4f6;
  background: #fff;
  color: #12152d;
  text-decoration: none;
  font-weight: 800;
}

.pagination-wrap .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 991px) {
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .newsletter-box {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-box .btn {
    margin-left: 0 !important;
    width: 100%;
  }

  .site-modal-panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    width: calc(100vw - 24px);
  }
}
/* Stats Section */
.stats-box {
  background: linear-gradient(135deg, var(--statsGradientStart, #6b63ff), var(--statsGradientMiddle, #a69eff));
  padding: 28px 35px;
  border-radius: 18px;
  color: #fff;
  gap: 15px;
}

.stats-icon {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 8px;
}

.counter {
  font-size: 32px;
  font-weight: 800;
  color: beige;
}

.stats-label {
  color: beige;
  font-size: 14px;
}

/* Testimonial Section */
.testimonial-box {
  border-radius: 18px;
  overflow: hidden;
}

/* الصورة */
.testimonial-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;}

/* اليمين */
.testimonial-content {
  padding: 35px;
  text-align: center;
}

.partners-strip-section {
  background: #f8fbff;
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  padding: 8px 0 4px;
  width: 100%;
}

.partners-marquee-track {
  animation: partner-slide 28s linear infinite;
  display: flex;
  gap: 18px;
  width: max-content;
}

.partners-marquee:hover .partners-marquee-track {
  animation-play-state: paused;
}

.partner-logo-pill {
  align-items: center;
  background: #fff;
  border: 1px solid #e0e7f3;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
  display: inline-flex;
  height: 86px;
  justify-content: center;
  padding: 18px 28px;
  width: 210px;
}

.partner-logo-pill img {
  max-height: 48px;
  object-fit: contain;
  width: 100%;
}

@keyframes partner-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partners-page-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-detail-card {
  background: #fff;
  border: 1px solid #e0e7f3;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(32, 39, 77, .07);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.partner-detail-logo {
  align-items: center;
  background: #f8fbff;
  border: 1px solid #e0e7f3;
  border-radius: 14px;
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 18px;
}

.partner-detail-logo img {
  max-height: 58px;
  object-fit: contain;
  width: 100%;
}

.partner-detail-card h2 {
  color: #12152d;
  font-size: 22px;
  margin: 0;
}

.partner-detail-card p {
  color: #53617d;
  margin: 0;
}

.partner-meta-row {
  color: #66728a;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.partner-meta-row span {
  background: #f0edff;
  border-radius: 999px;
  color: var(--primary);
  padding: 6px 10px;
}

/* عنوان صغير */
.tag {
  color: var(--blueMid);
  font-weight: 600;
  letter-spacing: 0;
}

/* رمز الاقتباس */
.quote-icon {
  font-size: 32px;
  color: var(--blueMid);
  margin: 10px 0;
}

/* نص الريفيو */
.testimonial-text {
  color: #666;
  font-style: italic;
  max-width: 420px;
  margin: auto;
}

/* الشخص */
.review-person {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
/*  blog css*/
.blog-card {
  border-radius: 18px;
  padding: 12px;
  gap: 12px;
}

.blog-img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.blog-content p {
  color: #666;
  margin: 6px 0;
}

.blog-tag {
  color: var(--blueMid);
  font-weight: 600;
  letter-spacing: 0;
}

.read-link {
  color: var(--blueMid);
  font-weight: 600;
  text-decoration: none;
}

.read-link:hover {
  text-decoration: underline;
}
.faq-tag {
  color: var(--blueMid);
  font-weight: 600;
  letter-spacing: 0;
}

.accordion-button {
  font-weight: 600;
  background: #f5f8ff;
}

.accordion-button:not(.collapsed) {
  color: #4b3df2;
  background: #e8ecff;
}

.accordion-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #eef1ff;
}

.cta-box {
  padding: 28px 35px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* زر الحجز */
.cta-btn {
  background: #ffffff;
  color: #4b3df2;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 25px;
  transition: 0.2s;
}

.cta-btn:hover {
  background: var(--blueMid);
  color: var(--light);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .appointment-bar .website-form-grid,
  .appointment-bar .website-dynamic-form,
  .website-form-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Homepage appointment bar spacing override */
.appointment-bar {
  padding: 10px 18px !important;
}

.appointment-bar .website-dynamic-form {
  gap: 12px !important;
}

.appointment-bar .website-form-grid {
  gap: 10px !important;
}

.appointment-bar .website-form-grid label {
  font-size: 14px !important;
  gap: 5px !important;
  line-height: 1.2;
}

.appointment-bar .website-form-grid input,
.appointment-bar .website-form-grid select,
.appointment-bar .mm-select-trigger,
.appointment-bar .mm-date-trigger,
.appointment-bar .website-form-submit {
  min-height: 38px !important;
}

.appointment-bar .website-form-grid input,
.appointment-bar .website-form-grid select,
.appointment-bar .mm-select-trigger,
.appointment-bar .mm-date-trigger {
  border-radius: 12px !important;
  padding-block: 7px !important;
}

.appointment-bar .website-form-grid input,
.appointment-bar .website-form-grid select {
  border-radius: 12px !important;
  font-size: 14px !important;
}

/* Footer Styles */
.modern-footer {
  background: var(--footer-bg, #111827);
  color: #f8fafc;
  margin-top: 0;
  padding: 88px 0 94px;
}

.footer-main-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(300px, 1.1fr) minmax(170px, .7fr) minmax(230px, .8fr) minmax(320px, 1fr);
}

.footer-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 28px;
  text-decoration: none;
}

.footer-brand-icon {
  align-items: center;
  background: #00b894;
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  font-size: 27px;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1.05;
}

.footer-brand strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 900;
}

.footer-brand small {
  color: #00f0a8;
  font-size: 17px;
  margin-top: 5px;
}

.footer-brand-block p {
  color: #9fb0cb;
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 430px;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  align-items: center;
  background: rgba(148, 163, 184, .12);
  border-radius: 10px;
  color: #eff6ff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  text-decoration: none;
  width: 54px;
}

.footer-socials img {
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.footer-socials a:hover {
  background: #00b894;
  color: #fff;
}

.footer-column,
.footer-support-block {
  align-content: start;
  display: grid;
}

.footer-column {
  gap: 18px;
}

.footer-column h2,
.footer-support-block h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 5px 0 18px;
}

.footer-column a,
.footer-contact-list a,
.footer-legal-links a {
  color: #f8fafc;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
}

.footer-column a:hover,
.footer-contact-list a:hover,
.footer-legal-links a:hover {
  color: #00f0a8;
}

.footer-contact-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.footer-contact-list li {
  align-items: center;
  color: #f8fafc;
  display: flex;
  font-size: 21px;
  gap: 12px;
}

.footer-contact-list span {
  color: #ff2f80;
  display: inline-flex;
  font-size: 18px;
  width: 22px;
}

.footer-legal-links {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-crisis-card {
  background: rgba(148, 163, 184, .12);
  border-radius: 10px;
  color: #fff;
  padding: 18px 20px;
}

.footer-crisis-card span,
.footer-crisis-card strong,
.footer-crisis-card small {
  display: block;
}

.footer-crisis-card span {
  color: #00f0a8;
  font-size: 17px;
  font-weight: 900;
}

.footer-crisis-card b {
  background: #ff2f80;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  margin-right: 8px;
  padding: 2px 4px;
}

.footer-crisis-card strong {
  font-size: 25px;
  margin: 6px 0 2px;
}

.footer-crisis-card small {
  color: #9fb0cb;
  font-size: 17px;
}

.footer-bottom-row {
  align-items: center;
  border-top: 1px solid rgba(148, 163, 184, .14);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 52px;
}

.footer-bottom-row p {
  color: #7d8ca7;
  font-size: 20px;
  margin: 0;
}

.footer-bottom-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.footer-bottom-row span {
  color: #7d8ca7;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .modern-footer {
    padding: 58px 0 64px;
  }

  .footer-main-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .footer-brand-block p,
  .footer-column a,
  .footer-contact-list li,
  .footer-contact-list a,
  .footer-legal-links a,
  .footer-bottom-row p,
  .footer-bottom-row span {
    font-size: 17px;
  }

  .footer-bottom-row {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
    padding-top: 32px;
  }

  .footer-bottom-row div {
    gap: 14px 24px;
  }
}

.language-dropdown {
  position: relative;
}

.language-dropdown-trigger {
  align-items: center;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
}

.language-dropdown-menu {
  background: #fff;
  border: 1px solid #e4e8f6;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
  min-width: 86px;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 1200;
}

.language-dropdown-menu[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-dropdown-menu a {
  border-radius: 8px;
  color: #071431;
  display: block;
  padding: 8px 10px;
  text-decoration: none;
}

.language-dropdown-menu a:hover,
.language-dropdown-menu a.active {
  background: #f0edff;
  color: var(--primary);
}

.language-dropdown-menu span {
  display: block;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.language-dropdown-menu small {
  color: #66728a;
  font-weight: 700;
}

.language-mobile-select {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 12px;
  color: #071431;
  font-weight: 800;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

/* Database-backed public pages */
.page-hero-rich {
  padding-top: 118px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.page-hero-actions .hero-btn,
.page-cta .hero-btn,
.journey-plan-card .hero-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}

.page-hero-actions .hero-btn-outline {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .72);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.page-band {
  padding: 76px 0;
}

.page-band.white {
  background: #fff;
}

.page-section-heading {
  margin: 0 auto 34px;
  max-width: 780px;
}

.page-section-heading.center {
  text-align: center;
}

.page-section-heading.left {
  margin-left: 0;
  text-align: left;
}

.page-section-heading h2 {
  color: #12152d;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 8px 0 10px;
}

.page-section-heading p {
  color: #53617d;
  line-height: 1.75;
  margin: 0;
}

.page-split {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
}

.page-split-media img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  box-shadow: 0 24px 58px rgba(32, 39, 77, .12);
  object-fit: cover;
  width: 100%;
}

.page-card-grid,
.process-grid,
.pricing-grid,
.metric-grid {
  display: grid;
  gap: 22px;
}

.page-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-feature-card,
.process-card,
.journey-plan-card,
.metric-card,
.faq-panel {
  background: #fff;
  border: 1px solid #e4e8f6;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(32, 39, 77, .07);
  height: 100%;
  padding: 24px;
}

.page-feature-card span,
.journey-plan-card small {
  color: var(--primary);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-feature-icon {
  color: var(--primary);
  display: inline-grid;
  font-size: 32px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  width: 46px;
}

.page-feature-card h3,
.process-card h3,
.journey-plan-card h3,
.metric-card h3 {
  color: #12152d;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.page-feature-card p,
.process-card p,
.journey-plan-card p,
.metric-card p {
  color: #53617d;
  line-height: 1.7;
  margin: 0;
}

.process-card {
  border-top: 4px solid var(--primary);
}

.process-card-top {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.process-icon {
  align-items: center;
  background: color-mix(in srgb, var(--primary), white 84%);
  border-radius: 12px;
  color: var(--primary);
  display: inline-flex;
  font-size: 22px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.process-card-top strong {
  color: #d8dded;
  font-size: 28px;
  font-weight: 900;
}

.process-card ul,
.journey-plan-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.process-card li,
.journey-plan-card li {
  color: #36415d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}

.process-card li::before {
  background: var(--primary);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: .65em;
  width: 5px;
}

.journey-plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.journey-plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 26px 70px color-mix(in srgb, var(--primary), transparent 72%);
  transform: translateY(-6px);
}

.plan-badge {
  background: var(--primary);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  left: 22px;
  padding: 6px 10px;
  position: absolute;
  top: -14px;
}

.plan-price {
  align-items: baseline;
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.plan-price strong {
  color: #12152d;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  color: #53617d;
  font-size: 13px;
  font-weight: 800;
}

.journey-plan-card li {
  align-items: center;
  display: flex;
  gap: 9px;
  padding-left: 0;
}

.journey-plan-card li i {
  color: var(--primary);
}

.journey-plan-card .hero-btn {
  background: var(--primary);
  color: #fff;
  margin-top: auto;
  width: 100%;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 34px;
}

.pricing-tabs a {
  background: #fff;
  border: 1px solid #dfe4f6;
  border-radius: 999px;
  color: #36415d;
  font-weight: 900;
  padding: 9px 16px;
  text-decoration: none;
}

.pricing-tabs a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.metric-card {
  text-align: center;
}

.metric-card .page-feature-icon {
  margin-left: auto;
  margin-right: auto;
}

.metric-card strong {
  color: var(--primary);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 860px;
}

.faq-list-page {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 900px;
}

.faq-panel summary {
  color: #12152d;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel p {
  color: #53617d;
  line-height: 1.75;
  margin: 14px 0 0;
}

.legal-page-wrap {
  max-width: 900px;
}

.legal-page-wrap h2 {
  color: #12152d;
  font-size: 32px;
  font-weight: 900;
  margin: 12px 0 18px;
}

.legal-copy {
  color: #53617d;
  font-size: 16px;
  line-height: 1.8;
}

.page-cta {
  background: linear-gradient(135deg, var(--heroGradientStart), var(--heroGradientMid));
  border-radius: 22px;
  color: #fff;
  padding: 36px;
  text-align: center;
}

.page-cta h2 {
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.page-cta p {
  color: rgba(255, 255, 255, .88);
  margin: 0 auto 22px;
  max-width: 720px;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .page-card-grid,
  .process-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .page-split,
  .process-grid,
  .pricing-grid,
  .partners-page-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .journey-plan-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-band {
    padding: 54px 0;
  }

  .page-card-grid,
  .process-grid.four {
    grid-template-columns: 1fr;
  }

  .page-hero-actions .btn,
  .page-cta-actions .btn {
    width: 100%;
  }
}

/* Public typography system */
html {
  font-size: 16px;
}

body {
  color: #111827;
  font-family: "Roboto", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
small,
strong,
button,
input,
select,
textarea {
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1,
.hero-title,
.content-hero h1,
.page-hero-rich h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

h2,
.section-head h2,
.page-section-heading h2,
.page-cta h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

h3,
.site-info-card h3,
.site-person-card h3,
.pricing-card h3,
.solution-card h3,
.listing-card h3,
.page-feature-card h3,
.process-card h3,
.journey-plan-card h3,
.metric-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

h4,
.brand-logo h4 {
  font-size: 20px;
  line-height: 1.25;
}

p,
.hero-desc,
.content-hero p,
.page-section-heading p,
.page-feature-card p,
.process-card p,
.journey-plan-card p,
.metric-card p,
.faq-panel p {
  font-size: 16px;
  line-height: 1.7;
}

.nav-link,
.btn,
.hero-btn,
.module-action,
.pricing-tabs a,
.language-dropdown-trigger,
.language-dropdown-menu a,
.website-form-grid label,
.website-form-grid input,
.website-form-grid select,
.website-form-grid textarea {
  font-size: 15px;
  line-height: 1.35;
}

small,
.stats-label,
.plan-price span,
.process-card li,
.journey-plan-card li,
.plan-badge {
  font-size: 14px;
  line-height: 1.45;
}

.rating-value,
.page-feature-icon,
.process-icon {
  font-size: 20px;
}

.stats-box h3,
.plan-price strong,
.metric-card strong {
  font-size: 32px;
  line-height: 1.1;
}

.footer-brand strong {
  font-size: 26px;
}

.footer-brand small,
.footer-crisis-card span,
.footer-crisis-card small {
  font-size: 15px;
}

.footer-brand-block p,
.footer-column a,
.footer-contact-list li,
.footer-contact-list a,
.footer-legal-links a,
.footer-bottom-row p,
.footer-bottom-row span {
  font-size: 16px;
  line-height: 1.65;
}

.footer-column h2,
.footer-support-block h2,
.footer-crisis-card strong {
  font-size: 20px;
  line-height: 1.25;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

.contact-page-shell {
  background: #f8fafc;
}

.contact-page-hero {
  background: linear-gradient(135deg, rgba(79, 70, 229, .12), rgba(0, 184, 148, .10));
  padding: 92px 0 38px;
  text-align: center;
}

.contact-page-hero h1 {
  color: #0f172a;
  margin: 12px auto 12px;
  max-width: 760px;
}

.contact-page-hero p {
  color: #475569;
  margin: 0 auto;
  max-width: 720px;
}

.contact-us-section {
  padding: 42px 0 72px;
}

.contact-us-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.contact-details-panel,
.contact-form-panel {
  background: #fff;
  border: 1px solid #e5edf6;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.contact-details-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.contact-details-panel h2,
.contact-form-panel h2 {
  color: #0f172a;
  font-size: 22px;
  margin: 0;
}

.contact-details-panel > div > p {
  color: #64748b;
  margin: 8px 0 0;
}

.contact-info-row {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 36px 1fr;
}

.contact-info-row > span {
  align-items: center;
  background: color-mix(in srgb, var(--primary) 12%, #fff);
  border-radius: 10px;
  color: var(--primary);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.contact-info-row strong {
  color: #0f172a;
  display: block;
  font-size: 15px;
}

.contact-info-row p,
.contact-info-row a,
.contact-info-row small {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin: 3px 0 0;
  text-decoration: none;
}

.contact-crisis-box {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  color: #be123c;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.contact-crisis-box span {
  font-size: 14px;
  font-weight: 800;
}

.contact-crisis-box strong {
  font-size: 20px;
  line-height: 1.2;
}

.contact-crisis-box small {
  color: #9f1239;
}

.contact-form-panel {
  padding: 30px;
}

.contact-us-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.contact-us-form label {
  color: #334155;
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
}

.contact-us-form .full {
  grid-column: 1 / -1;
}

.contact-us-form input,
.contact-us-form select,
.contact-us-form textarea {
  background: #fff;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  color: #0f172a;
  font: inherit;
  min-height: 46px;
  padding: 11px 13px;
  width: 100%;
}

.contact-us-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-us-form button {
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  grid-column: 1 / -1;
  min-height: 48px;
  padding: 13px 18px;
}

.contact-us-form button:hover {
  filter: brightness(.95);
}

.contact-notice {
  border-radius: 10px;
  font-weight: 700;
  margin-top: 16px;
  padding: 12px 14px;
}

.contact-notice.success {
  background: #ecfdf5;
  color: #047857;
}

.contact-notice.error {
  background: #fff1f2;
  color: #be123c;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1,
  .hero-title,
  .content-hero h1,
  .page-hero-rich h1 {
    font-size: 32px;
  }

  h2,
  .section-head h2,
  .page-section-heading h2,
  .page-cta h2 {
    font-size: 26px;
  }

  h3,
  .site-info-card h3,
  .site-person-card h3,
  .pricing-card h3,
  .solution-card h3,
  .listing-card h3,
  .page-feature-card h3,
  .process-card h3,
  .journey-plan-card h3,
  .metric-card h3 {
    font-size: 20px;
  }

  p,
  .hero-desc,
  .content-hero p,
  .page-section-heading p,
  .page-feature-card p,
  .process-card p,
  .journey-plan-card p,
  .metric-card p,
  .faq-panel p {
    font-size: 15px;
  }

  .footer-main-grid {
    gap: 32px;
  }

  .footer-brand strong {
    font-size: 23px;
  }

  .contact-page-hero {
    padding: 76px 0 30px;
  }

  .contact-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-panel,
  .contact-form-panel {
    border-radius: 12px;
    padding: 22px;
  }

  .contact-us-form {
    grid-template-columns: 1fr;
  }
}
