:root {
  --bv-primary: #1e293b;
  --bv-accent: #d97706;
  --bv-accent2: #fbbf24;
  --bv-bg: #ffffff;
  --bv-bg-alt: #fffbeb;
  --bv-text: #292524;
  --bv-text-light: #78716c;
  --bv-border: #e7e5e4;
  --bv-error: #b91c1c;
  --bv-white: #ffffff;
  --bv-radius: 999px;
  --bv-radius-card: 12px;
  --bv-shadow: 0 4px 24px rgba(30,41,59,.08);
  --bv-shadow-lg: 0 8px 40px rgba(30,41,59,.12);
  --bv-font-heading: 'DM Serif Display', Georgia, serif;
  --bv-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bv-transition: .3s ease;
  --bv-max-width: 1200px;
  --bv-header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--bv-font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--bv-text);
  background: var(--bv-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bv-accent);
  text-decoration: none;
  transition: color var(--bv-transition);
}

a:hover {
  color: var(--bv-accent2);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bv-font-heading);
  color: var(--bv-primary);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.bv-container {
  width: 100%;
  max-width: var(--bv-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.bv-section {
  padding: 72px 0;
}

.bv-section--alt {
  background: var(--bv-bg-alt);
}

.bv-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bv-accent);
}

.bv-section-label::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--bv-accent);
  border-radius: 2px;
}

.bv-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.bv-heading::before {
  content: "";
  width: 5px;
  min-height: 36px;
  align-self: stretch;
  background: var(--bv-accent);
  border-radius: 3px;
  flex-shrink: 0;
}

.bv-heading h2 {
  margin: 0;
}

.bv-subtitle {
  color: var(--bv-text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 40px;
}

.bv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--bv-radius);
  transition: all var(--bv-transition);
  text-decoration: none;
  border: 2px solid transparent;
}

.bv-btn--primary {
  background: var(--bv-accent);
  color: var(--bv-white);
  border-color: var(--bv-accent);
}

.bv-btn--primary:hover {
  background: #b45309;
  border-color: #b45309;
  color: var(--bv-white);
}

.bv-btn--outline {
  background: transparent;
  color: var(--bv-primary);
  border-color: var(--bv-primary);
}

.bv-btn--outline:hover {
  background: var(--bv-primary);
  color: var(--bv-white);
}

.bv-btn--white {
  background: var(--bv-white);
  color: var(--bv-primary);
  border-color: var(--bv-white);
}

.bv-btn--white:hover {
  background: var(--bv-bg-alt);
  border-color: var(--bv-bg-alt);
  color: var(--bv-primary);
}

.bv-btn--sm {
  padding: 8px 20px;
  font-size: .85rem;
}

.bv-btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.bv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--bv-header-h);
  background: var(--bv-white);
  z-index: 1000;
  transition: box-shadow var(--bv-transition), height var(--bv-transition);
  display: flex;
  align-items: center;
}

.bv-header.pinned {
  box-shadow: 0 2px 16px rgba(30,41,59,.1);
}

.bv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--bv-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.bv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bv-font-heading);
  font-size: 1.35rem;
  color: var(--bv-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.bv-logo span {
  color: var(--bv-accent);
}

.bv-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bv-nav__item {
  position: relative;
}

.bv-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--bv-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--bv-transition), color var(--bv-transition);
}

.bv-nav__link:hover,
.bv-nav__link--active {
  color: var(--bv-accent);
  background: var(--bv-bg-alt);
}

.bv-nav__chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--bv-transition);
}

.bv-nav__item:hover .bv-nav__chevron,
.bv-nav__item:focus-within .bv-nav__chevron {
  transform: rotate(180deg);
}

.bv-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow-lg);
  border: 1px solid var(--bv-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--bv-transition);
  z-index: 100;
}

.bv-nav__item:hover .bv-dropdown,
.bv-nav__item:focus-within .bv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bv-dropdown__link {
  display: block;
  padding: 10px 14px;
  font-size: .88rem;
  color: var(--bv-text);
  border-radius: 8px;
  transition: background var(--bv-transition), color var(--bv-transition);
}

.bv-dropdown__link:hover {
  background: var(--bv-bg-alt);
  color: var(--bv-accent);
}

.bv-header__cta {
  margin-left: 12px;
  flex-shrink: 0;
}

.bv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

.bv-burger__line {
  width: 100%;
  height: 2px;
  background: var(--bv-primary);
  border-radius: 2px;
  transition: all var(--bv-transition);
}

.bv-burger.shown .bv-burger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.bv-burger.shown .bv-burger__line:nth-child(2) {
  opacity: 0;
}

.bv-burger.shown .bv-burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.bv-mobile-nav {
  position: fixed;
  top: var(--bv-header-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--bv-header-h));
  background: var(--bv-white);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--bv-transition);
  z-index: 999;
}

.bv-mobile-nav.shown {
  transform: translateX(0);
}

.bv-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bv-text);
  border-bottom: 1px solid var(--bv-border);
}

.bv-mobile-nav__link:hover {
  color: var(--bv-accent);
}

.bv-mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bv-text);
  border-bottom: 1px solid var(--bv-border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}

.bv-mobile-dropdown-toggle svg {
  transition: transform var(--bv-transition);
}

.bv-mobile-dropdown-toggle.shown svg {
  transform: rotate(180deg);
}

.bv-mobile-sub {
  display: none;
  padding-left: 16px;
}

.bv-mobile-sub.shown {
  display: block;
}

.bv-mobile-sub a {
  display: block;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--bv-text-light);
  border-bottom: 1px solid var(--bv-border);
}

.bv-mobile-sub a:hover {
  color: var(--bv-accent);
}

.bv-mobile-nav__cta {
  margin-top: 24px;
  display: block;
  text-align: center;
}

/* ===== HERO ===== */
.bv-hero {
  margin-top: var(--bv-header-h);
  padding: 64px 0;
  background: var(--bv-primary);
  overflow: hidden;
}

.bv-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bv-hero__content {
  color: var(--bv-white);
}

.bv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(217,119,6,.2);
  color: var(--bv-accent2);
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--bv-radius);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bv-hero h1 {
  color: var(--bv-white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.bv-hero__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 520px;
}

.bv-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bv-hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.bv-hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.bv-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.bv-hero__stat-num {
  font-family: var(--bv-font-heading);
  font-size: 2rem;
  color: var(--bv-accent2);
}

.bv-hero__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ===== PAGE HERO (subpages) ===== */
.bv-page-hero {
  margin-top: var(--bv-header-h);
  padding: 48px 0;
  background: var(--bv-primary);
  color: var(--bv-white);
}

.bv-page-hero h1 {
  color: var(--bv-white);
  margin-bottom: 8px;
}

.bv-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.bv-breadcrumb a {
  color: var(--bv-accent2);
}

.bv-breadcrumb a:hover {
  color: var(--bv-white);
}

.bv-page-hero__sub {
  max-width: 600px;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
}

/* ===== CARDS ===== */
.bv-card {
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  overflow: hidden;
  transition: transform var(--bv-transition), box-shadow var(--bv-transition);
}

.bv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bv-shadow-lg);
}

.bv-card__img {
  position: relative;
  overflow: hidden;
}

.bv-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--bv-transition);
}

.bv-card:hover .bv-card__img img {
  transform: scale(1.04);
}

.bv-card__stripe {
  height: 4px;
  background: var(--bv-accent);
}

.bv-card__body {
  padding: 24px;
}

.bv-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.2rem;
  color: var(--bv-primary);
  margin-bottom: 8px;
}

.bv-card__text {
  font-size: .92rem;
  color: var(--bv-text-light);
  margin-bottom: 16px;
}

.bv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bv-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  background: var(--bv-bg-alt);
  color: var(--bv-accent);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--bv-radius);
  border: 1px solid var(--bv-accent2);
}

.bv-price small {
  font-weight: 400;
  font-size: .78rem;
  color: var(--bv-text-light);
}

/* ===== SERVICE CARDS (icon top) ===== */
.bv-svc-card {
  padding: 32px 24px;
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  text-align: center;
  transition: transform var(--bv-transition), box-shadow var(--bv-transition);
}

.bv-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bv-shadow-lg);
}

.bv-svc-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--bv-bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-svc-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bv-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-svc-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.15rem;
  color: var(--bv-primary);
  margin-bottom: 10px;
}

.bv-svc-card__text {
  font-size: .9rem;
  color: var(--bv-text-light);
}

/* ===== GRIDS ===== */
.bv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.bv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== TESTIMONIALS ===== */
.bv-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bv-testimonial {
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  padding: 32px;
}

.bv-testimonial__quote {
  font-size: .95rem;
  color: var(--bv-text);
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--bv-accent);
}

.bv-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bv-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.bv-testimonial__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--bv-primary);
}

.bv-testimonial__role {
  font-size: .8rem;
  color: var(--bv-text-light);
}

/* ===== FAQ ===== */
.bv-faq-item {
  border-bottom: 1px solid var(--bv-border);
}

.bv-faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bv-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.bv-faq-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--bv-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--bv-transition);
  flex-shrink: 0;
}

.bv-faq-item.shown .bv-faq-toggle svg {
  transform: rotate(180deg);
}

.bv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.bv-faq-item.shown .bv-faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

.bv-faq-answer p {
  color: var(--bv-text-light);
  font-size: .92rem;
}

/* ===== FORMS ===== */
.bv-form-group {
  margin-bottom: 20px;
}

.bv-form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--bv-primary);
  margin-bottom: 6px;
}

.bv-input {
  width: 100%;
  padding: 14px 16px;
  background: #f5f5f4;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: .95rem;
  color: var(--bv-text);
  transition: border-color var(--bv-transition), background var(--bv-transition);
}

.bv-input:focus {
  outline: none;
  border-color: var(--bv-accent);
  background: var(--bv-white);
}

.bv-input--error {
  border-color: var(--bv-error);
}

.bv-form-error {
  font-size: .8rem;
  color: var(--bv-error);
  margin-top: 4px;
  display: none;
}

textarea.bv-input {
  min-height: 120px;
  resize: vertical;
}

select.bv-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M5 9l7 5 7-5' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ===== NEWSLETTER ===== */
.bv-newsletter {
  background: var(--bv-primary);
  padding: 64px 0;
  text-align: center;
}

.bv-newsletter h2 {
  color: var(--bv-white);
  margin-bottom: 12px;
}

.bv-newsletter p {
  color: rgba(255,255,255,.7);
  max-width: 500px;
  margin: 0 auto 32px;
}

.bv-newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.bv-newsletter__form .bv-input {
  flex: 1;
}

/* ===== FOOTER ===== */
.bv-footer {
  background: var(--bv-primary);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.bv-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.bv-footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.bv-footer__heading {
  font-family: var(--bv-font-heading);
  font-size: 1.05rem;
  color: var(--bv-white);
  margin-bottom: 20px;
}

.bv-footer__links a {
  display: block;
  padding: 5px 0;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--bv-transition);
}

.bv-footer__links a:hover {
  color: var(--bv-accent2);
}

.bv-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}

.bv-footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--bv-accent2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.bv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.bv-footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.bv-footer__social {
  display: flex;
  gap: 12px;
}

.bv-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background var(--bv-transition);
}

.bv-footer__social a:hover {
  background: var(--bv-accent);
}

.bv-footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--bv-white);
}

.bv-footer__disclaimer {
  width: 100%;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
  padding-bottom: 24px;
}

/* ===== COOKIE BANNER ===== */
.bv-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bv-primary);
  color: var(--bv-white);
  padding: 16px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.bv-cookie.shown {
  transform: translateY(0);
}

.bv-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bv-cookie__text {
  font-size: .88rem;
  flex: 1;
  min-width: 240px;
}

.bv-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
.bv-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--bv-accent);
  color: var(--bv-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217,119,6,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--bv-transition);
  z-index: 900;
  cursor: pointer;
  border: none;
}

.bv-top-btn.shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bv-top-btn:hover {
  background: #b45309;
}

.bv-top-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--bv-white);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== CONTACT PAGE ===== */
.bv-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.bv-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bv-bg-alt);
  border-radius: var(--bv-radius-card);
  margin-bottom: 16px;
}

.bv-contact-info-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--bv-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.bv-contact-info-card h4 {
  font-family: var(--bv-font-body);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bv-contact-info-card p {
  font-size: .88rem;
  color: var(--bv-text-light);
}

/* ===== FLIGHT SEARCH ===== */
.bv-flight-search {
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow-lg);
  padding: 32px;
  margin-bottom: 48px;
}

.bv-flight-search__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.bv-flight-search__grid--dates {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bv-flight-search__grid--options {
  grid-template-columns: 1fr 1fr auto;
  margin-top: 16px;
}

/* ===== PRICING TABLE ===== */
.bv-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.bv-pricing-table th,
.bv-pricing-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: .92rem;
  border-bottom: 1px solid var(--bv-border);
}

.bv-pricing-table th {
  background: var(--bv-primary);
  color: var(--bv-white);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bv-pricing-table th:first-child {
  border-radius: 10px 0 0 0;
}

.bv-pricing-table th:last-child {
  border-radius: 0 10px 0 0;
}

.bv-pricing-table tr:hover td {
  background: var(--bv-bg-alt);
}

.bv-pricing-table td:last-child {
  font-weight: 700;
  color: var(--bv-accent);
}

/* ===== TIER CARDS ===== */
.bv-tier {
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  padding: 32px;
  text-align: center;
  position: relative;
  border: 2px solid var(--bv-border);
  transition: border-color var(--bv-transition);
}

.bv-tier:hover {
  border-color: var(--bv-accent);
}

.bv-tier--featured {
  border-color: var(--bv-accent);
}

.bv-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: var(--bv-accent);
  color: var(--bv-white);
  font-size: .78rem;
  font-weight: 700;
  border-radius: var(--bv-radius);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bv-tier__name {
  font-family: var(--bv-font-heading);
  font-size: 1.35rem;
  color: var(--bv-primary);
  margin-bottom: 8px;
}

.bv-tier__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bv-accent);
  margin-bottom: 8px;
}

.bv-tier__price small {
  font-size: .9rem;
  font-weight: 400;
  color: var(--bv-text-light);
}

.bv-tier__desc {
  font-size: .88rem;
  color: var(--bv-text-light);
  margin-bottom: 24px;
}

.bv-tier__features {
  text-align: left;
  margin-bottom: 28px;
}

.bv-tier__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--bv-text);
  border-bottom: 1px solid var(--bv-border);
}

.bv-tier__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bv-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== TIMELINE ===== */
.bv-timeline {
  position: relative;
  padding-left: 40px;
}

.bv-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bv-border);
}

.bv-timeline__item {
  position: relative;
  margin-bottom: 32px;
}

.bv-timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--bv-accent);
  border-radius: 50%;
  border: 3px solid var(--bv-bg-alt);
}

.bv-timeline__year {
  font-size: .8rem;
  font-weight: 700;
  color: var(--bv-accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.bv-timeline__title {
  font-family: var(--bv-font-heading);
  font-size: 1.1rem;
  color: var(--bv-primary);
  margin-bottom: 6px;
}

.bv-timeline__text {
  font-size: .88rem;
  color: var(--bv-text-light);
}

/* ===== VALUES GRID ===== */
.bv-value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
}

.bv-value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--bv-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bv-value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bv-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-value-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.bv-value-card p {
  font-size: .88rem;
  color: var(--bv-text-light);
}

/* ===== TEAM ===== */
.bv-team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
}

.bv-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bv-primary);
  color: var(--bv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bv-font-heading);
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.bv-team-card__name {
  font-family: var(--bv-font-heading);
  font-size: 1.1rem;
  color: var(--bv-primary);
  margin-bottom: 4px;
}

.bv-team-card__role {
  font-size: .82rem;
  color: var(--bv-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.bv-team-card__bio {
  font-size: .88rem;
  color: var(--bv-text-light);
}

/* ===== CTA SECTION ===== */
.bv-cta-section {
  background: linear-gradient(135deg, var(--bv-accent), #b45309);
  padding: 64px 0;
  text-align: center;
  color: var(--bv-white);
}

.bv-cta-section h2 {
  color: var(--bv-white);
  margin-bottom: 16px;
}

.bv-cta-section p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  opacity: .9;
}

/* ===== STEPS ===== */
.bv-steps {
  counter-reset: stepCounter;
}

.bv-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.bv-step__num {
  counter-increment: stepCounter;
  width: 48px;
  height: 48px;
  background: var(--bv-bg-alt);
  border: 2px solid var(--bv-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bv-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bv-step h4 {
  margin-bottom: 6px;
}

.bv-step p {
  font-size: .92rem;
  color: var(--bv-text-light);
}

/* ===== LEGAL PAGES ===== */
.bv-legal {
  padding: 48px 0;
  max-width: 860px;
  margin: 0 auto;
}

.bv-legal h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  padding-left: 16px;
  border-left: 4px solid var(--bv-accent);
}

.bv-legal h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.bv-legal p {
  margin-bottom: 14px;
  font-size: .94rem;
  color: var(--bv-text);
}

.bv-legal ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.bv-legal ul li {
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--bv-text);
}

/* ===== THANK YOU / 404 ===== */
.bv-status-page {
  margin-top: var(--bv-header-h);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 20px;
}

.bv-status-page__icon {
  width: 80px;
  height: 80px;
  background: var(--bv-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.bv-status-page__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--bv-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bv-status-page h1 {
  margin-bottom: 12px;
}

.bv-status-page p {
  color: var(--bv-text-light);
  max-width: 480px;
  margin: 0 auto 32px;
}

.bv-status-page__code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--bv-accent);
  font-family: var(--bv-font-heading);
  margin-bottom: 8px;
}

.bv-status-page__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ROUTE / FLIGHT CARDS ===== */
.bv-route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  gap: 16px;
  transition: transform var(--bv-transition), box-shadow var(--bv-transition);
}

.bv-route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bv-shadow-lg);
}

.bv-route-card__route {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bv-route-card__city {
  font-weight: 600;
  font-size: .95rem;
  color: var(--bv-primary);
}

.bv-route-card__arrow {
  color: var(--bv-accent);
  font-size: 1.1rem;
}

.bv-route-card__details {
  font-size: .82rem;
  color: var(--bv-text-light);
}

.bv-route-card__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ===== FAQ CATEGORIES ===== */
.bv-faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bv-faq-cat-btn {
  padding: 8px 20px;
  border-radius: var(--bv-radius);
  font-size: .85rem;
  font-weight: 600;
  background: var(--bv-bg-alt);
  color: var(--bv-text);
  border: 1px solid var(--bv-border);
  cursor: pointer;
  transition: all var(--bv-transition);
}

.bv-faq-cat-btn.shown,
.bv-faq-cat-btn:hover {
  background: var(--bv-accent);
  color: var(--bv-white);
  border-color: var(--bv-accent);
}

/* ===== MAP ===== */
.bv-map-wrap {
  margin-top: 32px;
  border-radius: var(--bv-radius-card);
  overflow: hidden;
}

/* ===== SLIDE UP ANIMATION ===== */
.bv-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.bv-animate.shown {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DESTINATION DETAIL CARDS ===== */
.bv-dest-card {
  background: var(--bv-white);
  border-radius: var(--bv-radius-card);
  box-shadow: var(--bv-shadow);
  overflow: hidden;
}

.bv-dest-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bv-dest-card__stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--bv-accent), var(--bv-accent2));
}

.bv-dest-card__body {
  padding: 24px;
}

.bv-dest-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.2rem;
  color: var(--bv-primary);
  margin-bottom: 10px;
}

.bv-dest-card__text {
  font-size: .9rem;
  color: var(--bv-text-light);
  margin-bottom: 16px;
}

.bv-dest-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bv-tag {
  padding: 3px 10px;
  background: var(--bv-bg-alt);
  font-size: .75rem;
  font-weight: 600;
  color: var(--bv-accent);
  border-radius: var(--bv-radius);
}

/* ===== PROSE (long content) ===== */
.bv-prose p {
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.72;
}

.bv-prose h3 {
  margin: 32px 0 12px;
}

.bv-prose ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}

.bv-prose ul li {
  margin-bottom: 8px;
  font-size: .92rem;
  color: var(--bv-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bv-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bv-hero__image img {
    height: 320px;
  }
  .bv-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .bv-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .bv-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bv-testimonials {
    grid-template-columns: 1fr 1fr;
  }
  .bv-nav {
    display: none;
  }
  .bv-header__cta {
    display: none;
  }
  .bv-burger {
    display: flex;
  }
  .bv-flight-search__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bv-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .bv-section {
    padding: 48px 0;
  }
  .bv-hero {
    padding: 40px 0;
  }
  .bv-hero h1 {
    font-size: 2.2rem;
  }
  .bv-grid-3 {
    grid-template-columns: 1fr;
  }
  .bv-grid-2 {
    grid-template-columns: 1fr;
  }
  .bv-testimonials {
    grid-template-columns: 1fr;
  }
  .bv-footer__top {
    grid-template-columns: 1fr;
  }
  .bv-newsletter__form {
    flex-direction: column;
  }
  .bv-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bv-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .bv-route-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .bv-route-card__right {
    width: 100%;
    justify-content: space-between;
  }
  .bv-flight-search__grid {
    grid-template-columns: 1fr;
  }
  .bv-flight-search__grid--dates,
  .bv-flight-search__grid--options {
    grid-template-columns: 1fr;
  }
  .bv-cookie__inner {
    flex-direction: column;
    text-align: center;
  }
  .bv-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bv-hero h1 {
    font-size: 1.8rem;
  }
  .bv-hero__stat-num {
    font-size: 1.5rem;
  }
  .bv-grid-4 {
    grid-template-columns: 1fr;
  }
  .bv-btn--lg {
    padding: 14px 28px;
    font-size: .95rem;
  }
  .bv-card__img img {
    height: 180px;
  }
}

@media print {
  .bv-header,
  .bv-cookie,
  .bv-top-btn,
  .bv-mobile-nav,
  .bv-newsletter {
    display: none;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
  .bv-section {
    padding: 24px 0;
  }
  .bv-hero {
    margin-top: 0;
    background: #fff;
    color: #000;
  }
  .bv-hero h1,
  .bv-hero__text {
    color: #000;
  }
}
