:root {
  --ov-dark: #0a0d14;
  --ov-dark-2: #111623;
  --ov-dark-3: #1a2133;
  --ov-gold: #d4af37;
  --ov-gold-soft: #e6c96a;
  --ov-gold-deep: #a4831f;
  --ov-light: #f6f3ec;
  --ov-light-2: #e9e4d8;
  --ov-body: #d9dde6;
  --ov-muted: #a9b0bd;
  --ov-success: #4caf7d;
  --ov-danger: #e05a5a;
  --ov-radius: 18px;
  --ov-radius-sm: 12px;
  --ov-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ov-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.25);
  --ov-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --ov-font-head: "Playfair Display", "Georgia", serif;
  --ov-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ov-dark);
  color: var(--ov-body);
  font-family: var(--ov-font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ov-font-head);
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }

p { color: var(--ov-body); }

a {
  color: var(--ov-gold);
  text-decoration: none;
  transition: color var(--ov-transition);
}

a:hover,
a:focus {
  color: var(--ov-gold-soft);
}

.ov-section {
  position: relative;
  padding: 96px 0;
}

.ov-section--dark { background-color: var(--ov-dark); }
.ov-section--panel { background-color: var(--ov-dark-2); }
.ov-section--raised { background-color: var(--ov-dark-3); }
.ov-section--light {
  background-color: var(--ov-light);
  color: #1c2430;
}
.ov-section--light h2,
.ov-section--light h3,
.ov-section--light h4 { color: #101722; }
.ov-section--light p { color: #3a4453; }

.ov-section--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ov-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ov-gold);
  margin-bottom: 18px;
}

.ov-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ov-gold);
  display: inline-block;
}

.ov-eyebrow--center { justify-content: center; }

.ov-divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--ov-gold), transparent);
  border-radius: 3px;
  margin: 22px 0;
}

.ov-divider--center { margin-left: auto; margin-right: auto; }

.ov-lead {
  font-size: 1.08rem;
  color: var(--ov-body);
  max-width: 760px;
}

.ov-section--light .ov-lead { color: #3a4453; }

.ov-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ov-transition), background-color var(--ov-transition), color var(--ov-transition), border-color var(--ov-transition), box-shadow var(--ov-transition);
}

.ov-btn:focus-visible {
  outline: 3px solid var(--ov-gold-soft);
  outline-offset: 3px;
}

.ov-btn--gold {
  background: linear-gradient(135deg, var(--ov-gold), var(--ov-gold-deep));
  color: #14100a;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.28);
}

.ov-btn--gold:hover,
.ov-btn--gold:focus {
  background: linear-gradient(135deg, var(--ov-gold-soft), var(--ov-gold));
  color: #14100a;
  transform: translateY(-2px);
}

.ov-btn--ghost {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--ov-gold-soft);
}

.ov-btn--ghost:hover,
.ov-btn--ghost:focus {
  background: rgba(212, 175, 55, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.ov-btn--light {
  background: #ffffff;
  color: #101722;
}

.ov-btn--light:hover,
.ov-btn--light:focus {
  background: var(--ov-light-2);
  color: #101722;
  transform: translateY(-2px);
}

.ov-btn--block { width: 100%; }

.ov-navbar {
  background: rgba(10, 13, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color var(--ov-transition), padding var(--ov-transition), border-color var(--ov-transition);
  padding: 18px 0;
}

.ov-navbar.ov-navbar--scrolled {
  background: rgba(10, 13, 20, 0.94);
  padding: 10px 0;
  border-bottom-color: rgba(212, 175, 55, 0.28);
}

.ov-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ov-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.ov-navbar .navbar-brand:hover { color: var(--ov-gold-soft); }

.ov-navbar .nav-link {
  color: #d9dde6;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 14px !important;
  position: relative;
}

.ov-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--ov-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ov-transition);
}

.ov-navbar .nav-link:hover,
.ov-navbar .nav-link:focus,
.ov-navbar .nav-link.active {
  color: var(--ov-gold-soft);
}

.ov-navbar .nav-link:hover::after,
.ov-navbar .nav-link.active::after { transform: scaleX(1); }

.ov-navbar .navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--ov-gold);
  padding: 8px 12px;
  border-radius: 10px;
}

.ov-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35); }

.ov-topbar {
  background: var(--ov-dark-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--ov-muted);
}

.ov-topbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
  align-items: center;
  padding: 9px 0;
}

.ov-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ov-topbar__item i { color: var(--ov-gold); }

.ov-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ov-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.14), transparent 55%);
  pointer-events: none;
}

.ov-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.ov-hero__title { margin-bottom: 20px; }

.ov-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ov-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 620px;
}

.ov-hero__stat-value {
  font-family: var(--ov-font-head);
  font-size: 2rem;
  color: var(--ov-gold-soft);
  line-height: 1;
}

.ov-hero__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #c4cad6;
  margin-top: 8px;
}

.ov-badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.12);
  color: var(--ov-gold-soft);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ov-badge-18 i { color: var(--ov-gold); }

.ov-card {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--ov-radius);
  padding: 34px 30px;
  height: 100%;
  transition: transform var(--ov-transition), border-color var(--ov-transition), box-shadow var(--ov-transition);
}

.ov-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--ov-shadow-soft);
}

.ov-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--ov-gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.ov-card__title { font-size: 1.25rem; margin-bottom: 12px; }
.ov-card__text { color: var(--ov-body); margin-bottom: 0; font-size: 0.96rem; }

.ov-card--light {
  background: #ffffff;
  border-color: var(--ov-light-2);
}

.ov-card--light .ov-card__text { color: #3a4453; }

.ov-media {
  position: relative;
  border-radius: var(--ov-radius);
  overflow: hidden;
  box-shadow: var(--ov-shadow-soft);
}

.ov-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ov-media:hover img { transform: scale(1.05); }

.ov-media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 24px 20px;
  background: linear-gradient(to top, rgba(10, 13, 20, 0.92), transparent);
  color: #ffffff;
}

.ov-media__caption h4 { font-size: 1.1rem; margin-bottom: 4px; }
.ov-media__caption span { font-size: 0.85rem; color: #cfd5e0; }

.ov-gallery__item { height: 100%; }

.ov-testimonial {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ov-radius);
  padding: 38px 34px;
  height: 100%;
}

.ov-testimonial__stars { color: var(--ov-gold); margin-bottom: 16px; }

.ov-testimonial__text {
  font-size: 1rem;
  color: var(--ov-body);
  font-style: italic;
  margin-bottom: 22px;
}

.ov-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ov-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: var(--ov-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ov-testimonial__name { color: #ffffff; font-weight: 600; font-size: 0.95rem; }
.ov-testimonial__role { font-size: 0.82rem; color: var(--ov-muted); }

.ov-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: var(--ov-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cfd5e0;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.88rem;
  text-align: center;
  min-height: 76px;
}

.ov-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ov-feature-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--ov-body);
}

.ov-feature-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--ov-gold);
}

.ov-section--light .ov-feature-list li { color: #3a4453; }

.ov-step {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--ov-radius);
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
}

.ov-step__number {
  font-family: var(--ov-font-head);
  font-size: 2.4rem;
  color: rgba(212, 175, 55, 0.35);
  line-height: 1;
  margin-bottom: 14px;
}

.ov-step__title { font-size: 1.15rem; margin-bottom: 10px; }
.ov-step__text { margin-bottom: 0; font-size: 0.95rem; }

.ov-price-card {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ov-radius);
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--ov-transition), border-color var(--ov-transition);
}

.ov-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}

.ov-price-card--featured {
  border-color: var(--ov-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), var(--ov-dark-2) 45%);
}

.ov-price-card__tag {
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--ov-gold);
  color: #14100a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ov-price-card__title { font-size: 1.3rem; margin-bottom: 8px; }
.ov-price-card__price {
  font-family: var(--ov-font-head);
  font-size: 2.6rem;
  color: var(--ov-gold-soft);
  line-height: 1;
  margin: 14px 0 4px;
}

.ov-price-card__price small {
  font-size: 0.9rem;
  color: var(--ov-muted);
  font-family: var(--ov-font-body);
}

.ov-price-card__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  flex-grow: 1;
}

.ov-price-card__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: var(--ov-body);
}

.ov-price-card__list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--ov-gold);
  font-size: 0.85rem;
}

.ov-faq .accordion-item {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ov-radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.ov-faq .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  box-shadow: none;
}

.ov-faq .accordion-button:not(.collapsed) {
  color: var(--ov-gold-soft);
  background: rgba(212, 175, 55, 0.08);
}

.ov-faq .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
  border-color: transparent;
}

.ov-faq .accordion-button::after {
  filter: invert(78%) sepia(55%) saturate(500%) hue-rotate(5deg);
}

.ov-faq .accordion-body {
  color: var(--ov-body);
  padding: 4px 24px 22px;
  font-size: 0.96rem;
}

.ov-form {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ov-radius);
  padding: 40px 34px;
}

.ov-form--light {
  background: #ffffff;
  border-color: var(--ov-light-2);
}

.ov-form .form-label {
  color: #eef1f6;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.ov-form--light .form-label { color: #1c2430; }

.ov-form .form-control,
.ov-form .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: var(--ov-radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
}

.ov-form--light .form-control,
.ov-form--light .form-select {
  background: #ffffff;
  border-color: #cfd5e0;
  color: #1c2430;
}

.ov-form .form-control::placeholder { color: #8f96a4; }

.ov-form .form-control:focus,
.ov-form .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ov-gold);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.ov-form--light .form-control:focus,
.ov-form--light .form-select:focus {
  background: #ffffff;
  color: #1c2430;
}

.ov-field-error {
  display: none;
  color: var(--ov-danger);
  font-size: 0.82rem;
  margin-top: 6px;
}

.ov-form .is-invalid { border-color: var(--ov-danger) !important; }
.ov-form .is-invalid + .ov-field-error { display: block; }

.ov-notice {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--ov-radius-sm);
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.ov-notice.is-visible { display: flex; }
.ov-notice--success {
  background: rgba(76, 175, 125, 0.14);
  border: 1px solid rgba(76, 175, 125, 0.55);
  color: #b9f0d3;
}
.ov-notice--error {
  background: rgba(224, 90, 90, 0.14);
  border: 1px solid rgba(224, 90, 90, 0.55);
  color: #ffd2d2;
}

.ov-notice i { margin-top: 3px; }

.ov-carousel .carousel-item { transition: transform 0.9s ease-in-out; }

.ov-slide {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.ov-slide__inner { max-width: 660px; padding: 40px 0; }

.ov-carousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--ov-gold);
  border: none;
  opacity: 0.4;
}

.ov-carousel .carousel-indicators .active { opacity: 1; }

.ov-carousel .carousel-control-prev,
.ov-carousel .carousel-control-next {
  width: 8%;
  opacity: 0.85;
}

.ov-map-frame {
  border-radius: var(--ov-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--ov-shadow-soft);
  min-height: 420px;
}

.ov-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.ov-cta-band {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 110px 0;
}

.ov-cta-band h2 { margin-bottom: 20px; }

.ov-cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ov-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ov-stat {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--ov-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ov-stat__value {
  font-family: var(--ov-font-head);
  font-size: 2.4rem;
  color: var(--ov-gold-soft);
  line-height: 1;
}

.ov-stat__label {
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #c4cad6;
}

.ov-timeline {
  position: relative;
  padding-left: 34px;
}

.ov-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--ov-gold), transparent);
}

.ov-timeline__item {
  position: relative;
  margin-bottom: 34px;
}

.ov-timeline__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ov-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.ov-timeline__year {
  color: var(--ov-gold-soft);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.ov-timeline__title { font-size: 1.15rem; margin-bottom: 8px; }
.ov-timeline__text { margin-bottom: 0; font-size: 0.95rem; }

.ov-team {
  text-align: center;
}

.ov-team__photo {
  border-radius: var(--ov-radius);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.ov-team__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.ov-team__name { font-size: 1.15rem; margin-bottom: 4px; }
.ov-team__role { font-size: 0.85rem; color: var(--ov-gold-soft); letter-spacing: 0.6px; }
.ov-team__bio { font-size: 0.9rem; margin-top: 10px; color: var(--ov-body); }

.ov-legal-disclaimer {
  background: var(--ov-dark-3);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 4px solid var(--ov-gold);
  border-radius: var(--ov-radius-sm);
  padding: 26px 28px;
}

.ov-legal-disclaimer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--ov-gold-soft);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ov-legal-disclaimer p {
  font-size: 0.92rem;
  color: #cfd5e0;
  margin-bottom: 12px;
}

.ov-legal-disclaimer p:last-child { margin-bottom: 0; }

.ov-legal-block h3 { font-size: 1.35rem; margin-bottom: 14px; }
.ov-legal-block h4 { font-size: 1.05rem; margin: 22px 0 10px; color: var(--ov-gold-soft); }
.ov-legal-block p { font-size: 0.96rem; }
.ov-legal-block ul { padding-left: 20px; }
.ov-legal-block ul li { color: var(--ov-body); margin-bottom: 8px; font-size: 0.95rem; }

.ov-page-hero {
  position: relative;
  padding: 170px 0 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.ov-page-hero h1 { margin-bottom: 0; }

.ov-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-size: 0.86rem;
  color: var(--ov-muted);
}

.ov-breadcrumb li a { color: var(--ov-gold-soft); }

.ov-blog-card {
  background: var(--ov-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ov-radius);
  overflow: hidden;
  height: 100%;
  transition: transform var(--ov-transition), border-color var(--ov-transition);
}

.ov-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}

.ov-blog-card__media { overflow: hidden; }
.ov-blog-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ov-blog-card:hover .ov-blog-card__media img { transform: scale(1.05); }

.ov-blog-card__body { padding: 28px 26px; }
.ov-blog-card__meta {
  font-size: 0.8rem;
  color: var(--ov-gold-soft);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ov-blog-card__title { font-size: 1.25rem; margin-bottom: 12px; }
.ov-blog-card__excerpt { font-size: 0.94rem; margin-bottom: 18px; }

.ov-footer {
  background: var(--ov-dark-3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0 30px;
}

.ov-footer h5 {
  font-size: 1rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ov-gold-soft);
  margin-bottom: 20px;
}

.ov-footer p,
.ov-footer li {
  font-size: 0.92rem;
  color: #c4cad6;
}

.ov-footer ul { list-style: none; padding: 0; margin: 0; }
.ov-footer ul li { margin-bottom: 10px; }
.ov-footer ul li a { color: #c4cad6; }
.ov-footer ul li a:hover { color: var(--ov-gold-soft); }

.ov-footer__bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: var(--ov-muted);
}

.ov-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.ov-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-gold-soft);
}

.ov-footer__social a:hover {
  background: var(--ov-gold);
  color: #14100a;
}

.ov-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  width: min(960px, calc(100% - 32px));
  background: var(--ov-dark-2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--ov-radius);
  box-shadow: var(--ov-shadow);
  padding: 24px 26px;
  z-index: 2000;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ov-cookie-banner.is-visible { transform: translate(-50%, 0); }

.ov-cookie-banner__text {
  font-size: 0.9rem;
  color: #cfd5e0;
  margin: 0 0 16px;
}

.ov-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ov-cookie-banner__actions .ov-btn { padding: 11px 26px; font-size: 0.88rem; }

.ov-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(10, 13, 20, 0.85);
  color: var(--ov-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ov-transition), visibility var(--ov-transition), background-color var(--ov-transition);
  z-index: 1500;
}

.ov-back-to-top.is-visible { opacity: 1; visibility: visible; }
.ov-back-to-top:hover { background: var(--ov-gold); color: #14100a; }

.ov-reveal-mask {
  display: inline-block;
  overflow: hidden;
}

.ov-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--ov-radius);
  padding: 30px;
}

@media (max-width: 991px) {
  .ov-section { padding: 72px 0; }
  .ov-hero { min-height: 80vh; }
  .ov-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ov-hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ov-topbar__row { justify-content: center; }
}

@media (max-width: 767px) {
  .ov-section { padding: 58px 0; }
  .ov-page-hero { padding: 140px 0 64px; }
  .ov-stats-grid { grid-template-columns: 1fr; }
  .ov-hero__stats { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .ov-hero__actions { flex-direction: column; align-items: stretch; }
  .ov-hero__actions .ov-btn { width: 100%; }
  .ov-cookie-banner { padding: 20px; bottom: 16px; }
  .ov-cookie-banner__actions .ov-btn { flex: 1 1 100%; }
  .ov-back-to-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* Price page: ensure comparison tables use an explicit dark background so
   gold and light cell text keeps sufficient contrast (the .ov-glass wrapper
   is semi-transparent, which read as white to some contrast tools). */
.ov-price .ov-glass .table,
.ov-price .ov-glass .table thead,
.ov-price .ov-glass .table tbody,
.ov-price .ov-glass .table tr,
.ov-price .ov-glass .table th,
.ov-price .ov-glass .table td {
  background-color: #1a2133 !important;
}
.ov-price .ov-glass .table th,
.ov-price .ov-glass .table td {
  border-color: rgba(255, 255, 255, 0.08);
}
