/* ==========================================================================
   Printvizen.com — Stylesheet
   Design tokens
   -------------------------------------------------------------------------
   Color:
     --mv-navy:        #0B2545  (primary / headings / nav)
     --mv-navy-deep:   #071A33  (footer / darkest surface)
     --mv-teal:        #0E8388  (accent — CTAs, links, highlights)
     --mv-teal-deep:   #0A6367  (accent hover / active)
     --mv-gray-light:  #F4F6F8  (section backgrounds)
     --mv-gray-mid:    #6B7785  (secondary text)
     --mv-white:       #FFFFFF

   Type:
     Display / headings: 'Manrope'  (geometric, confident, no default-Bootstrap feel)
     Body / UI:           'Inter'    (neutral, highly readable)

   Signature element:
     The "Engagement Path" — a connected horizontal roadmap used for the
     4-step "How We Work" process, reflecting Printvizen.com's core idea that
     good marketing consulting follows a deliberate, connected process
     rather than a list of disconnected services.
   ========================================================================== */

:root {
  --mv-navy: #0b2545;
  --mv-navy-deep: #071a33;
  --mv-teal: #0e8388;
  --mv-teal-deep: #0a6367;
  --mv-gray-light: #f4f6f8;
  --mv-gray-mid: #6b7785;
  --mv-gray-border: #e3e7ec;
  --mv-white: #ffffff;

  --mv-font-display: "Manrope", "Segoe UI", sans-serif;
  --mv-font-body: "Inter", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--mv-font-body);
  color: #24303f;
  background-color: var(--mv-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.mv-display {
  font-family: var(--mv-font-display);
  color: var(--mv-navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: #3c4a5a;
  line-height: 1.7;
}

a {
  color: var(--mv-teal);
  text-decoration: none;
}

a:hover {
  color: var(--mv-teal-deep);
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--mv-teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Eyebrow label (structural device: marks section category) -------- */
.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mv-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mv-teal-deep);
  margin-bottom: 0.75rem;
}

.mv-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--mv-teal);
  display: inline-block;
}

.mv-section-title {
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.5rem);
  margin-bottom: 1rem;
}

.mv-section-lead {
  color: var(--mv-gray-mid);
  font-size: 1.05rem;
  max-width: 640px;
}

/* ---- Layout helpers ---------------------------------------------------- */
.mv-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.mv-section-tight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.mv-bg-light {
  background-color: var(--mv-gray-light);
}

.mv-bg-navy {
  background-color: var(--mv-navy);
}

/* ---- Navbar ------------------------------------------------------------- */
.mv-navbar {
  background-color: var(--mv-white);
  border-bottom: 1px solid var(--mv-gray-border);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.mv-navbar .navbar-brand {
  font-family: var(--mv-font-display);
  font-weight: 800;
  color: var(--mv-navy);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mv-navbar .navbar-brand .mv-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--mv-navy) 0%, var(--mv-teal) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.mv-navbar .nav-link {
  font-weight: 600;
  color: var(--mv-navy);
  padding: 0.5rem 0.9rem !important;
  font-size: 0.96rem;
}

.mv-navbar .nav-link:hover,
.mv-navbar .nav-link.active {
  color: var(--mv-teal-deep);
}

.btn-mv-primary {
  background-color: var(--mv-teal);
  border-color: var(--mv-teal);
  color: #fff;
  font-weight: 600;
  padding: 0.62rem 1.35rem;
  border-radius: 6px;
}

.btn-mv-primary:hover,
.btn-mv-primary:focus {
  background-color: var(--mv-teal-deep);
  border-color: var(--mv-teal-deep);
  color: #fff;
}

.btn-mv-outline {
  background-color: transparent;
  border: 1.5px solid var(--mv-navy);
  color: var(--mv-navy);
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 6px;
}

.btn-mv-outline:hover,
.btn-mv-outline:focus {
  background-color: var(--mv-navy);
  color: #fff;
}

.btn-mv-outline-light {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 6px;
}

.btn-mv-outline-light:hover,
.btn-mv-outline-light:focus {
  background-color: #fff;
  color: var(--mv-navy);
  border-color: #fff;
}

/* ---- Hero ---------------------------------------------------------------- */
.mv-hero {
  background-color: var(--mv-navy);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mv-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 131, 136, 0.35) 0%, rgba(14, 131, 136, 0) 70%);
  pointer-events: none;
}

.mv-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 1.7rem + 1.8vw, 3.1rem);
  line-height: 1.15;
}

.mv-hero p.lead {
  color: #cdd7e3;
  font-size: 1.12rem;
  max-width: 560px;
}

.mv-hero-eyebrow {
  color: #7fd8da;
}

.mv-hero-eyebrow::before {
  background-color: #7fd8da;
}

.mv-hero-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.55);
}

.mv-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Page header (interior pages) ---------------------------------------- */
.mv-page-header {
  background-color: var(--mv-navy);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.mv-page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.5rem);
}

.mv-page-header p {
  color: #cdd7e3;
  max-width: 620px;
}

.mv-breadcrumb-link {
  color: #9fb2c8;
  font-weight: 600;
  font-size: 0.9rem;
}

.mv-breadcrumb-link:hover {
  color: #fff;
}

/* ---- Cards ---------------------------------------------------------------- */
.mv-card {
  background-color: #fff;
  border: 1px solid var(--mv-gray-border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.mv-card:hover {
  border-color: var(--mv-teal);
  transform: translateY(-3px);
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(14, 131, 136, 0.1);
  color: var(--mv-teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.mv-card h3,
.mv-card h4 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.mv-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---- Signature element: Engagement Path (How We Work) --------------------- */
.mv-path {
  position: relative;
  padding-top: 1rem;
}

.mv-path-track {
  display: none;
}

.mv-path-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.mv-path-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--mv-teal) 0,
    var(--mv-teal) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

@media (max-width: 767.98px) {
  .mv-path-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mv-path-steps::before {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      to bottom,
      var(--mv-teal) 0,
      var(--mv-teal) 8px,
      transparent 8px,
      transparent 16px
    );
  }
}

.mv-path-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (max-width: 767.98px) {
  .mv-path-step {
    text-align: left;
    padding-left: 4.2rem;
  }
}

.mv-path-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--mv-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1.1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--mv-teal);
}

@media (max-width: 767.98px) {
  .mv-path-node {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

.mv-path-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mv-teal-deep);
  display: block;
  margin-bottom: 0.35rem;
}

.mv-path-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mv-path-step p {
  font-size: 0.93rem;
  color: var(--mv-gray-mid);
}

/* ---- Why choose us list ----------------------------------------------- */
.mv-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--mv-gray-border);
}

.mv-benefit:last-child {
  border-bottom: none;
}

.mv-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(11, 37, 69, 0.06);
  color: var(--mv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.mv-benefit h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mv-benefit p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---- Strategy checklist section ---------------------------------------- */
.mv-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.97rem;
  color: #3c4a5a;
}

.mv-checklist li i {
  color: var(--mv-teal);
  margin-top: 0.2rem;
}

.mv-media-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--mv-gray-border);
}

.mv-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- CTA band ----------------------------------------------------------- */
.mv-cta {
  background: linear-gradient(120deg, var(--mv-navy) 0%, var(--mv-navy-deep) 100%);
  border-radius: 16px;
  padding: 3.25rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mv-cta::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 131, 136, 0.4) 0%, rgba(14, 131, 136, 0) 70%);
}

.mv-cta h2 {
  color: #fff;
}

.mv-cta p {
  color: #cdd7e3;
}

/* ---- Footer --------------------------------------------------------------- */
.mv-footer {
  background-color: var(--mv-navy-deep);
  color: #b8c4d3;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.mv-footer h5,
.mv-footer .navbar-brand {
  color: #fff;
}

.mv-footer a {
  color: #b8c4d3;
}

.mv-footer a:hover {
  color: #7fd8da;
}

.mv-footer .mv-logo-mark {
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
}

.mv-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.mv-footer .small {
  color: #8496a9;
}

.mv-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cdd7e3;
}

.mv-social-link:hover {
  background-color: var(--mv-teal);
  border-color: var(--mv-teal);
  color: #fff;
}

/* ---- Forms ------------------------------------------------------------- */
.mv-form-card {
  background-color: #fff;
  border: 1px solid var(--mv-gray-border);
  border-radius: 12px;
  padding: 2.25rem;
}

.form-label {
  font-weight: 600;
  color: var(--mv-navy);
  font-size: 0.92rem;
}

.form-control,
.form-select {
  border-color: var(--mv-gray-border);
  padding: 0.65rem 0.85rem;
  font-size: 0.96rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--mv-teal);
  box-shadow: 0 0 0 0.2rem rgba(14, 131, 136, 0.15);
}

.mv-contact-info-card {
  background-color: var(--mv-navy);
  border-radius: 12px;
  padding: 2.25rem;
  color: #fff;
  height: 100%;
}

.mv-contact-info-card h3 {
  color: #fff;
}

.mv-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.mv-contact-item i {
  color: #7fd8da;
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.mv-contact-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb2c8;
  margin-bottom: 0.2rem;
}

.mv-contact-item p,
.mv-contact-item a {
  color: #e4eaf1;
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* ---- Legal pages --------------------------------------------------------- */
.mv-legal h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.85rem;
}

.mv-legal h2:first-of-type {
  margin-top: 0;
}

.mv-legal p,
.mv-legal li {
  color: #3c4a5a;
  font-size: 0.97rem;
}

.mv-legal-updated {
  color: var(--mv-gray-mid);
  font-size: 0.88rem;
}
