/* ============================================
   ORAVIO - Header / Navigation Styles
   ============================================ */

/* --- NAV WRAPPER --- */
.oravio-nav-wrapper {
  background: #fff;
  border-bottom: 1px solid #e8e8f0;
}

/* --- NAV BAR --- */
.oravio-nav-bar {
  width: 100%;
  margin-top: -2px;
}

.oravio-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- LOGO --- */
.oravio-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #14143a;
  flex-shrink: 0;
  margin-right: 24px;
}

.oravio-logo__desktop {
  display: none;
}

.oravio-logo__mobile {
  display: block;
}

@media (min-width: 768px) {
  .oravio-logo__desktop {
    display: block;
  }

  .oravio-logo__mobile {
    display: none;
  }
}

/* --- NAV LINKS LIST --- */
.oravio-nav-links {
  display: none;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 4px;
  align-items: center;
}

@media (min-width: 1024px) {
  .oravio-nav-links {
    display: flex;
  }
}

/* --- INDIVIDUAL NAV ITEM --- */
.oravio-nav-item {
  position: static;
}

.oravio-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #14143a;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.oravio-nav-link:hover {
  color: #5f43d0;
}

.oravio-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.oravio-has-dropdown.oravio-open>.oravio-nav-link .oravio-chevron,
.oravio-has-dropdown:hover>.oravio-nav-link .oravio-chevron {
  transform: rotate(180deg);
}

/* --- DROPDOWN PANEL --- */
.oravio-dropdown {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e8e8f0;
  box-shadow: 0 8px 32px rgba(20, 20, 58, 0.10);
  z-index: 200;
}

.oravio-has-dropdown.oravio-open>.oravio-dropdown {
  display: block;
}

/* --- DROPDOWN INNER (3-col Product) --- */
.oravio-dropdown-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 32px;
  display: flex;
  gap: 48px;
}

/* --- DROPDOWN INNER (4-col Resources) --- */
.oravio-dropdown-inner--4col {
  gap: 32px;
}

.oravio-dropdown-inner--4col .oravio-dropdown-col {
  flex: 1;
}

/* --- DROPDOWN COL --- */
.oravio-dropdown-col {
  min-width: 220px;
}

/* --- DROPDOWN HEADING --- */
.oravio-dropdown-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #14143a;
  margin: 0 0 20px 0;
}

/* --- DROPDOWN LIST --- */
.oravio-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- DROPDOWN ITEM --- */
.oravio-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: #14143a;
  transition: color 0.15s;
}

.oravio-dropdown-item:hover {
  color: #5f43d0;
}

.oravio-dropdown-item strong {
  font-size: 0.9375rem;
  font-weight: 500;
}

.oravio-dropdown-item span {
  font-size: 0.8125rem;
  color: #6b6b8a;
  line-height: 1.4;
  font-weight: 400;
}

.oravio-dropdown-item--bold strong {
  font-weight: 600;
}

/* --- PLAIN LIST (Connect with us) --- */
.oravio-dropdown-list--plain .oravio-dropdown-item {
  flex-direction: row;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* --- POSTS LIST --- */
.oravio-dropdown-item--post {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.oravio-post-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-block;
}

.oravio-post-icon--1 {
  background: #e8e4ff;
}

.oravio-post-icon--2 {
  background: #d4f5e2;
}

.oravio-post-icon--3 {
  background: #e0f0ff;
}

.oravio-post-icon--4 {
  background: #ffe8f0;
}

/* --- CARDS AREA (Product dropdown right side) --- */
.oravio-dropdown-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  flex-shrink: 0;
}

/* Testimonial card */
.oravio-card-testimonial {
  border: 1px solid #e8e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.oravio-card-testimonial__img {
  height: 120px;
  background: #c5bff5;
}

.oravio-card-testimonial__body {
  padding: 16px;
}

.oravio-card-testimonial__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #14143a;
  margin: 0 0 8px;
}

.oravio-card-testimonial__quote {
  font-size: 0.8125rem;
  color: #6b6b8a;
  line-height: 1.5;
  margin: 0 0 12px;
}

.oravio-card-testimonial__author {
  font-size: 0.8125rem;
  color: #14143a;
  margin: 0 0 8px;
}

.oravio-card-testimonial__author span {
  color: #6b6b8a;
  font-weight: 400;
}

.oravio-card-testimonial__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #5f43d0;
  text-decoration: none;
}

/* AI card */
.oravio-card-ai {
  background: #2d1b69;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.oravio-card-ai__body h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.oravio-card-ai__body p {
  color: #c5bff5;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}

.oravio-card-ai__chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.oravio-chat-bubble {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.oravio-chat-bubble--user {
  background: #3d2a80;
  color: #e8e4ff;
  align-self: flex-end;
}

.oravio-chat-bubble--ai {
  background: #4c3599;
  color: #fff;
}

.oravio-ai-badge {
  display: block;
  font-weight: 600;
  color: #c5bff5;
  margin-bottom: 4px;
  font-size: 0.6875rem;
}

.oravio-chat-bubble--ai a {
  color: #a594f9;
  text-decoration: underline;
}

/* --- DROPDOWN FOOTER --- */
.oravio-dropdown-footer {
  border-top: 1px solid #e8e8f0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.oravio-dropdown-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #14143a;
  text-decoration: none;
  transition: color 0.15s;
}

.oravio-dropdown-footer__link:hover {
  color: #5f43d0;
}

.oravio-dropdown-footer__social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #14143a;
}

.oravio-dropdown-footer__social a {
  color: inherit;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.oravio-dropdown-footer__social a:hover {
  color: #5f43d0;
}

/* --- RIGHT NAV ACTIONS --- */
.oravio-nav-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .oravio-nav-actions {
    display: flex;
  }
}

.oravio-nav-globe {
  background: none;
  border: none;
  cursor: pointer;
  color: #14143a;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.15s;
}

.oravio-nav-globe:hover {
  color: #5f43d0;
}

.oravio-nav-divider {
  width: 1px;
  height: 20px;
  background: #d0d0e0;
  margin: 0 4px;
}

.oravio-nav-demo {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #14143a;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.15s;
}

.oravio-nav-demo:hover {
  color: #5f43d0;
}

.oravio-btn-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  height: 40px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #14143a;
  border: 1.5px solid #14143a;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.15s;
}

.oravio-btn-login:hover {
  background: #14143a;
  color: #fff;
}

.oravio-btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  height: 40px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  background: #14143a;
  border: 1.5px solid #14143a;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.15s;
}

.oravio-btn-signup:hover {
  background: #5f43d0;
  border-color: #5f43d0;
}

/* --- MOBILE BURGER --- */
.oravio-nav-burger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #14143a;
  margin-left: auto;
  padding: 4px;
}

@media (min-width: 1024px) {
  .oravio-nav-burger {
    display: none;
  }
}

/* ============================================
   MOBILE MENU PANEL
   ============================================ */
.oravio-mm {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 98;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.oravio-mm.oravio-mm--open {
  display: block;
}

@media (min-width: 1024px) {
  .oravio-mm {
    display: none !important;
  }
}

.oravio-mm-body {
  display: flex;
  flex-direction: column;
  padding: 4px 0 16px;
}

/* Nav accordion items */
.oravio-mm-nav {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eeebf8;
  margin-bottom: 10px;
}

.oravio-mm-item {
  border-bottom: 1px solid #f0eef8;
}

.oravio-mm-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #14143a;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.oravio-mm-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
  color: #6b6b8a;
}

.oravio-mm-item.oravio-mm-item--open .oravio-mm-chevron {
  transform: rotate(180deg);
}

.oravio-mm-item.oravio-mm-item--open .oravio-mm-trigger {
  color: #5f43d0;
}

/* Accordion panel */
.oravio-mm-panel {
  display: none;
  flex-direction: column;
  background: #f9f8ff;
  padding: 8px 24px 20px;
  gap: 0;
}

.oravio-mm-item.oravio-mm-item--open .oravio-mm-panel {
  display: flex;
}

.oravio-mm-subheading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9490b0;
  margin: 16px 0 10px;
}

.oravio-mm-subitem {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  text-decoration: none;
  color: #14143a;
  border-bottom: 1px solid #eeebf8;
}

.oravio-mm-subitem:last-child {
  border-bottom: none;
}

.oravio-mm-subitem-title {
  font-size: 0.9375rem;
  font-weight: 600;
}

.oravio-mm-subitem-desc {
  font-size: 0.8rem;
  color: #6b6b8a;
  line-height: 1.4;
}

/* Simple nav links */
.oravio-mm-link {
  display: block;
  padding: 13px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #14143a;
  text-decoration: none;
  border-bottom: 1px solid #f0eef8;
}

/* Pricing CTA card */
.oravio-mm-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 24px 0;
  padding: 12px 20px;
  background: linear-gradient(135deg, #eeeaff 0%, #e4deff 100%);
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #c4b5fd;
  transition: background 0.15s;
}

.oravio-mm-cta-card:hover {
  background: linear-gradient(135deg, #e4deff 0%, #d6ccff 100%);
}

.oravio-mm-cta-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #5f43d0;
}

.oravio-mm-cta-art {
  flex-shrink: 0;
}

/* Divider */
.oravio-mm-divider {
  border: none;
  border-top: 1px solid #eeebf8;
  margin: 10px 24px;
}

/* Support links */
.oravio-mm-support {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 0;
  margin-bottom: 4px;
}

.oravio-mm-support-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #14143a;
  text-decoration: none;
  border-bottom: 1px solid #f5f4fc;
}

.oravio-mm-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #14143a;
}

/* Action buttons */
.oravio-mm-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 24px 0;
  margin-top: 2px;
}

.oravio-mm-btn-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: #14143a;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.15s;
}

.oravio-mm-btn-signup:hover {
  background: #5f43d0;
}

.oravio-mm-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid #14143a;
  color: #14143a;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.15s;
}

.oravio-mm-btn-login:hover {
  background: #14143a;
  color: #fff;
}

.oravio-mm-btn-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  color: #5f43d0;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

/* Burger icon swap */
.oravio-nav-burger.oravio-nav-burger--open .oravio-burger-icon {
  display: none;
}

.oravio-nav-burger.oravio-nav-burger--open .oravio-close-icon {
  display: block !important;
}