/* ═══════════════════════════════════════════════
   base.css — Global Reset & Base Styles
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--pv-dark);
  color: var(--pv-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1.2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pv-blue);
  text-decoration: none;
  transition: var(--transition);
}
h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
a:hover {
  color: var(--pv-blue-hover);
}

/* ── Section Shared ── */
.pv-section {
  padding: var(--section-py) 0;
}

/* ── Section Header ── */
.pv-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.pv-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pv-blue);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 30%);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.pv-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--pv-white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pv-section-sub {
  color: var(--pv-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ── */
.pv-btn-primary {
  background: var(--pure-white);
  color: #000 !important;
  border: 2px solid var(--pure-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(234, 239, 250, 0.3);
}
.pv-btn-primary:hover {
  background: var(--pv-blue);
  border-color: var(--pv-blue);
  box-shadow: 0 6px 28px rgba(246, 74, 74, 0.5);
  transform: translateY(-1px);
  color: var(--pure-white) !important;
}

.pv-btn-outline {
  background: transparent;
  color: var(--pv-white) !important;
  border: 2px solid var(--pv-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: var(--transition);
}
.pv-btn-outline:hover {
  border-color: var(--pv-blue);
  color: var(--pv-blue) !important;
  background: var(--pv-blue-light);
}

/* ── Accent text ── */
.pv-accent {
  color: var(--pv-blue);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--pv-dark-2);
}
::-webkit-scrollbar-thumb {
  background: var(--pv-dark-4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pv-blue);
}

/* ── Selection ── */
::selection {
  background: var(--pv-blue);
  color: var(--pv-white);
}

@media (max-width: 768px) {
  .pv-section {
    padding: var(--section-py-sm) 0;
  }
}
h2.pv-section-title {
  position: relative;
  place-content: center;
}
/* .left_line,
.right_line {
  width: 20vw;
  height: 4px;
  background: linear-gradient(90deg, transparent, #910202);
  display: block;
} */
.positione_line {
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.positione_line::after,
.positione_line::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20vw;
  height: 5px;
}
.positione_line::before {
  right: 105%;
  background: linear-gradient(90deg, #bc07ff12, #e8844b);
}
.positione_line::after {
  left: 105%;
  background: linear-gradient(90deg, #e8844b, #bc07ff12);
}
