/*
Theme Name: Visaele Flow
Theme URI: https://www.visaeleprocess.com/
Author: Visaele Process
Description: Thème WordPress sur mesure pour Visaele Process — performance opérationnelle, trésorerie et conformité facturation.
Version: 1.0.4
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visaele-flow
Tags: custom-logo, custom-menu, featured-images, one-column, accessibility-ready
*/

:root {
  --vp-navy-950: #07172b;
  --vp-navy-900: #0b2341;
  --vp-navy-800: #153867;
  --vp-blue: #315ea8;
  --vp-blue-soft: #dce8ff;
  --vp-gold: #dfb54a;
  --vp-gold-light: #f7df9d;
  --vp-ivory: #fbfaf6;
  --vp-sand: #f2ecde;
  --vp-white: #ffffff;
  --vp-ink: #142033;
  --vp-muted: #687386;
  --vp-success: #217a56;
  --vp-danger: #a33b3b;
  --vp-border: rgba(10, 35, 65, 0.14);
  --vp-shadow: 0 28px 80px rgba(7, 23, 43, 0.12);
  --vp-radius: 28px;
  --vp-container: min(1180px, calc(100% - 40px));
  --vp-header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--vp-ivory);
  color: var(--vp-ink);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .vp-site-header {
  top: 50px;
}

body.vp-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--vp-gold);
  outline-offset: 4px;
}

::selection {
  background: var(--vp-gold-light);
  color: var(--vp-navy-950);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: var(--vp-white);
  color: var(--vp-navy-950);
  border-radius: 10px;
}

.vp-container {
  width: var(--vp-container);
  margin-inline: auto;
}

.vp-section {
  position: relative;
  padding: clamp(82px, 10vw, 150px) 0;
}

.vp-section--compact {
  padding: clamp(58px, 7vw, 96px) 0;
}

.vp-section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 12%, rgba(49, 94, 168, 0.32), transparent 31%),
    radial-gradient(circle at 88% 70%, rgba(223, 181, 74, 0.12), transparent 28%),
    var(--vp-navy-950);
  color: var(--vp-white);
}

.vp-section--sand {
  background: var(--vp-sand);
}

.vp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--vp-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vp-section--dark .vp-eyebrow,
.vp-hero .vp-eyebrow {
  color: var(--vp-gold-light);
}

.vp-eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.vp-heading {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.75rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.vp-heading--medium {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.vp-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--vp-muted);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.vp-section--dark .vp-lead,
.vp-hero .vp-lead {
  color: rgba(255, 255, 255, 0.72);
}

.vp-highlight {
  position: relative;
  z-index: 0;
  display: inline;
  white-space: nowrap;
}

.vp-highlight::after {
  position: absolute;
  z-index: -1;
  right: -0.07em;
  bottom: 0.03em;
  left: -0.07em;
  height: 0.48em;
  background: var(--vp-gold);
  clip-path: polygon(3% 15%, 100% 0, 96% 100%, 0 91%);
  content: "";
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 800ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.vp-highlight.is-visible::after,
.is-visible .vp-highlight::after {
  transform: scaleX(1);
}

.vp-section--dark .vp-highlight::after,
.vp-hero .vp-highlight::after {
  background: var(--vp-blue);
}

.vp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.vp-button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--vp-gold);
  box-shadow: 0 15px 36px rgba(223, 181, 74, 0.2);
  color: var(--vp-navy-950);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 830;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  transition: box-shadow 250ms ease, transform 250ms ease, background 250ms ease;
}

.vp-button::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.vp-button:hover {
  background: var(--vp-gold-light);
  box-shadow: 0 18px 50px rgba(223, 181, 74, 0.28);
  transform: translateY(-2px);
}

.vp-button:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.vp-button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  box-shadow: none;
  color: var(--vp-white);
}

.vp-button--ghost:hover {
  border-color: var(--vp-white);
  background: rgba(255, 255, 255, 0.08);
}

.vp-button--blue {
  background: var(--vp-blue);
  box-shadow: 0 15px 36px rgba(49, 94, 168, 0.2);
  color: var(--vp-white);
}

.vp-button--blue:hover {
  background: var(--vp-navy-800);
}

/* Page arrival */
.vp-arrival {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--vp-navy-950);
  pointer-events: none;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.vp-arrival__mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--vp-gold);
  font-size: 1.8rem;
  font-weight: 900;
  animation: vp-arrival-pulse 1s ease-in-out infinite alternate;
}

body.is-ready .vp-arrival {
  visibility: hidden;
  opacity: 0;
}

@keyframes vp-arrival-pulse {
  to {
    border-color: var(--vp-gold);
    box-shadow: 0 0 40px rgba(223, 181, 74, 0.35);
    transform: scale(1.06);
  }
}

/* Header */
.vp-site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.vp-header-inner {
  display: flex;
  width: var(--vp-container);
  min-height: var(--vp-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-inline: auto;
  padding: 11px 12px 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 23, 43, 0.7);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  color: var(--vp-white);
  pointer-events: auto;
  transition: width 380ms ease, min-height 380ms ease, background 380ms ease, color 380ms ease, border-color 380ms ease, box-shadow 380ms ease;
}

.vp-site-header.is-scrolled .vp-header-inner {
  width: min(1060px, calc(100% - 40px));
  min-height: 72px;
  border-color: var(--vp-border);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 46px rgba(7, 23, 43, 0.1);
  color: var(--vp-navy-950);
}

.vp-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.vp-brand__mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--vp-white);
  color: var(--vp-navy-900);
  font-size: 1.28rem;
  font-weight: 930;
  line-height: 1;
}

.vp-brand__mark::after {
  position: absolute;
  top: 2px;
  right: 8px;
  width: 3px;
  height: 31px;
  border-radius: 4px;
  background: var(--vp-gold);
  content: "";
  transform: rotate(28deg);
}

.vp-brand__name {
  display: inline-flex;
  overflow: hidden;
  max-width: 210px;
  align-items: baseline;
  gap: 5px;
  opacity: 1;
  white-space: nowrap;
  transition: max-width 350ms ease, opacity 250ms ease;
}

.vp-brand__name small {
  color: var(--vp-gold);
  font-size: 0.82em;
  font-style: italic;
  font-weight: 650;
}

.vp-site-header.is-scrolled .vp-brand__name {
  max-width: 0;
  opacity: 0;
}

.vp-brand .custom-logo {
  width: auto;
  max-width: 210px;
  height: 50px;
  object-fit: contain;
}

.vp-primary-nav {
  margin-left: auto;
}

.vp-primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-primary-nav a {
  position: relative;
  display: block;
  padding: 9px 0;
  font-size: 0.87rem;
  font-weight: 700;
}

.vp-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--vp-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.vp-primary-nav a:hover::after,
.vp-primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vp-header-cta {
  min-height: 52px;
  flex: 0 0 auto;
  padding: 13px 21px;
  font-size: 0.78rem;
}

.vp-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--vp-gold);
  color: var(--vp-navy-950);
  cursor: pointer;
}

.vp-nav-toggle > span:not(.screen-reader-text),
.vp-nav-toggle::before,
.vp-nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.vp-nav-toggle > span:not(.screen-reader-text) {
  margin: 4px 0;
}

.vp-nav-toggle[aria-expanded="true"] > span:not(.screen-reader-text) {
  opacity: 0;
}

.vp-nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.vp-nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.vp-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 120px;
  background:
    radial-gradient(circle at 72% 30%, rgba(49, 94, 168, 0.32), transparent 31%),
    radial-gradient(circle at 18% 70%, rgba(223, 181, 74, 0.12), transparent 27%),
    linear-gradient(160deg, #132e52 0%, var(--vp-navy-950) 52%, #020b16 100%);
  color: var(--vp-white);
}

.vp-hero::before {
  position: absolute;
  top: -28%;
  right: -13%;
  width: min(66vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.014);
  content: "";
}

.vp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.vp-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--vp-white);
  font-size: clamp(3rem, 6.7vw, 6.35rem);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

/* WordPress global styles assign a dark color to every heading. Restore the
   intended contrast wherever the Visaele design uses a dark background. */
.vp-section--dark h1,
.vp-section--dark h2,
.vp-section--dark h3,
.vp-offer--featured h2,
.vp-offer--featured h3,
.vp-cta h2,
.vp-page-hero h1,
.vp-case-study h2,
.vp-case-study h3,
.vp-contact-card h2,
.vp-contact-card h3,
.vp-not-found h1,
.vp-not-found h2 {
  color: var(--vp-white);
}

.vp-hero h1 em {
  color: var(--vp-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 450;
}

.vp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.vp-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vp-hero__meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vp-gold);
  content: "";
}

.vp-hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.vp-orbit {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.vp-orbit::before,
.vp-orbit::after {
  position: absolute;
  border: 1px dashed rgba(223, 181, 74, 0.3);
  border-radius: inherit;
  content: "";
}

.vp-orbit::before {
  inset: 12%;
}

.vp-orbit::after {
  inset: 28%;
}

.vp-orbit__core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 178px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  text-align: center;
}

.vp-orbit__core strong {
  display: block;
  color: var(--vp-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.9;
}

.vp-orbit__core small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-orbit__item {
  position: absolute;
  display: grid;
  width: 94px;
  min-height: 94px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(7, 23, 43, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  color: var(--vp-white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.vp-orbit__item:nth-child(2) { top: 1%; left: 42%; }
.vp-orbit__item:nth-child(3) { top: 29%; right: -5%; }
.vp-orbit__item:nth-child(4) { right: 11%; bottom: 2%; }
.vp-orbit__item:nth-child(5) { bottom: 4%; left: 7%; }
.vp-orbit__item:nth-child(6) { top: 27%; left: -6%; }

.vp-deadline-card {
  position: absolute;
  right: -12px;
  bottom: 18px;
  z-index: 3;
  width: min(290px, 72%);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.vp-deadline-card span {
  display: block;
  color: var(--vp-gold-light);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-deadline-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.25rem;
}

.vp-deadline-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
}

.vp-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.16);
}

.vp-marquee__track {
  display: flex;
  width: max-content;
  animation: vp-marquee 28s linear infinite;
}

.vp-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 64px;
  padding: 20px 32px;
}

.vp-marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vp-marquee__group span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vp-gold);
  content: "";
}

@keyframes vp-marquee {
  to { transform: translateX(-50%); }
}

/* Reveal */
.vp-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 0.74, 0.25, 1);
}

.vp-reveal[data-reveal="left"] { transform: translateX(-34px); }
.vp-reveal[data-reveal="right"] { transform: translateX(34px); }
.vp-reveal.is-visible { opacity: 1; transform: none; }

/* Pain points */
.vp-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 120px);
  margin-top: 68px;
}

.vp-sticky-copy {
  align-self: start;
}

@media (min-width: 900px) {
  .vp-sticky-copy {
    position: sticky;
    top: 155px;
  }
}

.vp-problem-list {
  display: grid;
  gap: 18px;
}

.vp-problem {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--vp-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.vp-problem:hover {
  border-color: rgba(49, 94, 168, 0.4);
  box-shadow: 0 20px 50px rgba(7, 23, 43, 0.08);
  transform: translateY(-4px);
}

.vp-problem__number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--vp-blue-soft);
  color: var(--vp-blue);
  font-size: 0.8rem;
  font-weight: 880;
}

.vp-problem h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.vp-problem p {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.94rem;
}

/* Expertise */
.vp-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.vp-expertise-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--vp-radius);
  background: rgba(255, 255, 255, 0.07);
  transform-style: preserve-3d;
  transition: border-color 280ms ease, background 280ms ease, transform 160ms ease;
}

.vp-expertise-card::after {
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.vp-expertise-card:hover {
  border-color: rgba(223, 181, 74, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.vp-expertise-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--vp-gold);
  color: var(--vp-navy-950);
  font-weight: 900;
}

.vp-expertise-card h3 {
  margin: 50px 0 12px;
  font-size: 1.42rem;
  line-height: 1.15;
}

.vp-expertise-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Stats and carousel */
.vp-results-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.vp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.vp-stat {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--vp-border);
  border-radius: 24px;
  background: var(--vp-white);
  box-shadow: 0 18px 50px rgba(7, 23, 43, 0.06);
}

.vp-stat strong {
  display: block;
  color: var(--vp-blue);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.vp-stat span {
  display: block;
  margin-top: 20px;
  color: var(--vp-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.vp-carousel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--vp-navy-900);
  box-shadow: var(--vp-shadow);
  color: var(--vp-white);
}

.vp-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 58px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(45px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.vp-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.vp-carousel__quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.vp-carousel__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
  font-weight: 750;
  text-transform: uppercase;
}

.vp-carousel__meta::before {
  width: 34px;
  height: 2px;
  background: var(--vp-gold);
  content: "";
}

.vp-carousel__dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 21px;
  display: flex;
  gap: 8px;
}

.vp-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.vp-carousel__dot.is-active {
  background: var(--vp-gold);
  transform: scale(1.25);
}

/* PIVOT roadmap */
.vp-roadmap-shell {
  position: relative;
  margin-top: 74px;
}

.vp-roadmap {
  position: relative;
  display: grid;
  gap: 70px;
  padding: 20px 0 40px;
}

.vp-roadmap__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(49, 94, 168, 0.13);
  transform: translateX(-50%);
}

.vp-roadmap__progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--vp-gold), var(--vp-blue));
  transform: scaleY(var(--vp-progress, 0));
  transform-origin: top;
  transition: transform 120ms linear;
}

.vp-roadmap__indicator {
  position: sticky;
  z-index: 4;
  top: calc(50vh - 54px);
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  margin: 0 auto -108px;
  border: 6px solid var(--vp-ivory);
  border-radius: 50%;
  background: var(--vp-navy-950);
  box-shadow: 0 0 0 2px rgba(49, 94, 168, 0.12), 0 16px 42px rgba(49, 94, 168, 0.22);
  color: var(--vp-white);
  text-align: center;
}

.vp-roadmap__indicator small {
  display: block;
  color: var(--vp-gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vp-roadmap__indicator strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.vp-roadmap__step {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: 290px;
}

.vp-roadmap__card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--vp-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 65px rgba(7, 23, 43, 0.06);
  opacity: 0.45;
  transform: scale(0.94);
  transition: opacity 450ms ease, transform 450ms ease, background 450ms ease, box-shadow 450ms ease;
}

.vp-roadmap__step:nth-of-type(even) .vp-roadmap__card {
  grid-column: 3;
}

.vp-roadmap__step:nth-of-type(odd) .vp-roadmap__card {
  grid-column: 1;
}

.vp-roadmap__step.is-active .vp-roadmap__card {
  background: var(--vp-white);
  box-shadow: 0 28px 85px rgba(49, 94, 168, 0.13);
  opacity: 1;
  transform: none;
}

.vp-roadmap__card h3 {
  margin: 0 0 12px;
  color: var(--vp-navy-900);
  font-size: 1.35rem;
}

.vp-roadmap__card p {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Offers */
.vp-offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 62px;
}

.vp-offer {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  grid-column: span 6;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  background: var(--vp-white);
  box-shadow: 0 18px 55px rgba(7, 23, 43, 0.06);
  transform-style: preserve-3d;
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 160ms ease;
}

.vp-offer:hover {
  border-color: rgba(49, 94, 168, 0.35);
  box-shadow: 0 28px 80px rgba(7, 23, 43, 0.12);
}

.vp-offer--featured {
  grid-column: span 7;
  background: var(--vp-navy-900);
  color: var(--vp-white);
}

.vp-offer--compact {
  grid-column: span 5;
  background: linear-gradient(140deg, var(--vp-gold-light), #fff7d9);
}

.vp-offer__tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--vp-blue-soft);
  color: var(--vp-blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-offer--featured .vp-offer__tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--vp-gold-light);
}

.vp-offer h3 {
  max-width: 500px;
  margin: 28px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.vp-offer p {
  max-width: 590px;
  margin: 0;
  color: var(--vp-muted);
}

.vp-offer--featured p {
  color: rgba(255, 255, 255, 0.68);
}

.vp-offer__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 34px;
}

.vp-offer__price strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.vp-offer__price small {
  color: var(--vp-muted);
}

.vp-offer--featured .vp-offer__price small {
  color: rgba(255, 255, 255, 0.58);
}

.vp-offer__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--vp-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vp-offer--featured .vp-offer__link {
  color: var(--vp-gold-light);
}

.vp-offer__link::after {
  content: "→";
  transition: transform 200ms ease;
}

.vp-offer__link:hover::after {
  transform: translateX(4px);
}

/* Reform timeline */
.vp-reform-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
  margin-top: 62px;
}

.vp-reform-date {
  position: sticky;
  top: 145px;
  padding: 36px;
  border-radius: 28px;
  background: var(--vp-gold);
  color: var(--vp-navy-950);
}

.vp-reform-date small {
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vp-reform-date strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.vp-reform-date span {
  display: block;
  margin-top: 20px;
  font-weight: 700;
}

.vp-reform-list {
  display: grid;
  gap: 18px;
}

.vp-reform-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.vp-reform-item strong {
  display: block;
  color: var(--vp-gold-light);
  font-size: 1.2rem;
}

.vp-reform-item p,
.vp-reform-item ul {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.vp-reform-item ul {
  padding-left: 20px;
}

.vp-reform-source {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.vp-reform-source a {
  color: var(--vp-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* About / floating scene */
.vp-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.vp-about-visual {
  position: relative;
  min-height: 600px;
}

.vp-about-circle {
  position: absolute;
  inset: 8% 5% 7% -20%;
  border-radius: 50%;
  background: var(--vp-navy-950);
  box-shadow: inset -40px -20px 100px rgba(49, 94, 168, 0.2);
}

.vp-profile-card {
  position: absolute;
  z-index: 2;
  top: 19%;
  right: 9%;
  width: min(330px, 80%);
  padding: 24px;
  border: 1px solid var(--vp-border);
  border-radius: 25px;
  background: var(--vp-white);
  box-shadow: var(--vp-shadow);
}

.vp-profile-card__portrait {
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, var(--vp-gold-light), transparent 30%),
    linear-gradient(145deg, var(--vp-blue-soft), var(--vp-sand));
  color: var(--vp-navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
}

.vp-profile-card__portrait img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.vp-profile-card h3 {
  margin: 20px 0 4px;
  font-size: 1.35rem;
}

.vp-profile-card p {
  margin: 0;
  color: var(--vp-muted);
  font-size: 0.86rem;
}

.vp-float-tag {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(7, 23, 43, 0.14);
  color: var(--vp-navy-900);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.vp-float-tag--one { top: 11%; left: 7%; }
.vp-float-tag--two { right: 0; bottom: 12%; }
.vp-float-tag--three { bottom: 5%; left: 14%; }

.vp-check-list {
  display: grid;
  gap: 15px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.vp-check-list li {
  position: relative;
  padding-left: 34px;
}

.vp-check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--vp-blue-soft);
  color: var(--vp-blue);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
}

/* CTA */
.vp-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.13), transparent 31%),
    linear-gradient(135deg, var(--vp-blue), var(--vp-navy-900));
  box-shadow: var(--vp-shadow);
  color: var(--vp-white);
}

.vp-cta::after {
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.vp-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 35px;
}

.vp-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.vp-cta p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.vp-site-footer {
  padding: 80px 0 30px;
  background: var(--vp-navy-950);
  color: var(--vp-white);
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.65fr);
  gap: 55px;
}

.vp-footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.vp-footer-column h2 {
  margin: 0 0 18px;
  color: var(--vp-gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-footer-column a,
.vp-footer-column li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.vp-footer-column a:hover {
  color: var(--vp-white);
}

.vp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 62px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.vp-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--vp-white);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease;
}

.vp-socials a:hover {
  border-color: var(--vp-gold);
  background: rgba(223, 181, 74, 0.12);
}

/* Inner pages */
.vp-page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 100px;
  background:
    radial-gradient(circle at 85% 25%, rgba(49, 94, 168, 0.38), transparent 32%),
    var(--vp-navy-950);
  color: var(--vp-white);
}

.vp-page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -0.067em;
  line-height: 0.92;
}

.vp-page-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.18rem;
}

.vp-page-content {
  padding: clamp(70px, 9vw, 130px) 0;
}

.vp-entry {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}

.vp-entry > * + * {
  margin-top: 1.4em;
}

.vp-entry h2,
.vp-entry h3 {
  margin-top: 2.2em;
  color: var(--vp-navy-900);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.vp-entry h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.vp-entry h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
.vp-entry p,
.vp-entry li { color: #48556a; }
.vp-entry a { color: var(--vp-blue); text-decoration: underline; text-underline-offset: 3px; }
.vp-entry blockquote {
  margin: 2em 0;
  padding: 25px 30px;
  border-left: 4px solid var(--vp-gold);
  border-radius: 0 20px 20px 0;
  background: var(--vp-sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.vp-method-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.vp-principle {
  padding: 28px;
  border: 1px solid var(--vp-border);
  border-radius: 22px;
  background: var(--vp-white);
}

.vp-principle strong {
  display: block;
  color: var(--vp-blue);
  font-size: 1.2rem;
}

.vp-principle p {
  margin: 10px 0 0;
  color: var(--vp-muted);
  font-size: 0.9rem;
}

.vp-case-study {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  margin-top: 60px;
  padding: clamp(30px, 5vw, 55px);
  border-radius: 30px;
  background: var(--vp-navy-900);
  color: var(--vp-white);
}

.vp-case-study__number {
  color: var(--vp-gold-light);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.vp-case-study p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.vp-contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 8vw, 100px);
}

.vp-contact-card {
  padding: 32px;
  border-radius: 28px;
  background: var(--vp-navy-900);
  color: var(--vp-white);
}

.vp-contact-card a {
  color: var(--vp-gold-light);
}

.vp-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vp-field {
  display: grid;
  gap: 7px;
}

.vp-field--full {
  grid-column: 1 / -1;
}

.vp-field label {
  color: var(--vp-navy-900);
  font-size: 0.8rem;
  font-weight: 800;
}

.vp-field input,
.vp-field textarea,
.vp-field select {
  width: 100%;
  border: 1px solid var(--vp-border);
  border-radius: 14px;
  background: var(--vp-white);
  color: var(--vp-ink);
  padding: 14px 16px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.vp-field input:focus,
.vp-field textarea:focus,
.vp-field select:focus {
  border-color: var(--vp-blue);
  box-shadow: 0 0 0 4px rgba(49, 94, 168, 0.1);
  outline: none;
}

.vp-field textarea {
  min-height: 170px;
  resize: vertical;
}

.vp-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--vp-muted);
  font-size: 0.82rem;
}

.vp-checkbox input {
  margin-top: 4px;
}

.vp-form-privacy {
  grid-column: 1 / -1;
  margin: -4px 0 2px;
  color: var(--vp-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.vp-form-privacy a {
  color: var(--vp-navy-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.vp-form-notice {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.vp-form-notice--success { background: #e4f5ec; color: var(--vp-success); }
.vp-form-notice--error { background: #fae8e8; color: var(--vp-danger); }
.vp-honeypot { position: absolute !important; left: -9999px !important; }

.vp-faq {
  display: grid;
  gap: 12px;
  margin-top: 50px;
}

.vp-faq details {
  border: 1px solid var(--vp-border);
  border-radius: 18px;
  background: var(--vp-white);
}

.vp-faq summary {
  position: relative;
  padding: 21px 58px 21px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.vp-faq summary::-webkit-details-marker { display: none; }
.vp-faq summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  content: "+";
  font-size: 1.5rem;
  transform: translateY(-50%);
}
.vp-faq details[open] summary::after { content: "−"; }
.vp-faq details p { margin: 0; padding: 0 24px 22px; color: var(--vp-muted); }

.vp-legal-warning {
  margin-bottom: 35px;
  padding: 20px 24px;
  border: 1px solid rgba(223, 181, 74, 0.55);
  border-radius: 18px;
  background: #fff8df;
  color: #68521b;
}

.vp-not-found {
  display: grid;
  min-height: 75vh;
  place-items: center;
  padding: 160px 20px 80px;
  background: var(--vp-navy-950);
  color: var(--vp-white);
  text-align: center;
}

.vp-not-found strong {
  display: block;
  color: var(--vp-gold);
  font-size: clamp(5rem, 16vw, 13rem);
  letter-spacing: -0.1em;
  line-height: 0.8;
}

/* Cursor */
.vp-cursor,
.vp-cursor-dot {
  position: fixed;
  z-index: 99998;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
}

.vp-cursor {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(223, 181, 74, 0.7);
  box-shadow: 0 0 24px rgba(223, 181, 74, 0.3);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.vp-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--vp-gold);
  box-shadow: 0 0 14px rgba(223, 181, 74, 0.8);
}

.vp-cursor.is-visible,
.vp-cursor-dot.is-visible { opacity: 1; }

.vp-cursor.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(49, 94, 168, 0.55);
  background: rgba(49, 94, 168, 0.12);
}

/* WordPress */
.alignwide { width: min(1100px, calc(100% - 40px)); max-width: none; margin-right: auto; margin-left: auto; }
.alignfull { width: 100%; max-width: none; }
.wp-caption, .gallery-caption { color: var(--vp-muted); font-size: 0.85rem; }
.bypostauthor { display: block; }
.sticky { position: relative; }

/* Responsive */
@media (max-width: 1080px) {
  .vp-primary-nav ul { gap: 16px; }
  .vp-header-cta { display: none; }
  .vp-hero-grid { grid-template-columns: 1fr 0.7fr; gap: 36px; }
  .vp-footer-grid { grid-template-columns: 1.2fr repeat(2, 0.7fr); }
  .vp-footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --vp-container: min(100% - 28px, 720px); }
  body.admin-bar .vp-site-header { top: 64px; }
  .vp-site-header, .vp-site-header.is-scrolled { top: 10px; }
  .vp-header-inner, .vp-site-header.is-scrolled .vp-header-inner { width: calc(100% - 22px); min-height: 68px; padding: 9px 10px 9px 14px; }
  .vp-brand__mark { width: 46px; height: 46px; }
  .vp-brand__name { max-width: 180px; font-size: 0.92rem; }
  .vp-site-header.is-scrolled .vp-brand__name { max-width: 180px; opacity: 1; }
  .vp-nav-toggle { display: grid; }
  .vp-primary-nav {
    position: fixed;
    top: 89px;
    right: 11px;
    left: 11px;
    visibility: hidden;
    overflow: auto;
    max-height: calc(100vh - 105px);
    padding: 25px;
    border: 1px solid var(--vp-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--vp-shadow);
    color: var(--vp-navy-950);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
  .vp-primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .vp-primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .vp-primary-nav a { padding: 12px; font-size: 1rem; }
  .vp-hero { min-height: auto; padding: 145px 0 150px; }
  .vp-hero-grid, .vp-problem-grid, .vp-results-grid, .vp-reform-grid, .vp-about-grid, .vp-contact-layout { grid-template-columns: 1fr; }
  .vp-hero-visual { min-height: 480px; }
  .vp-expertise-grid { grid-template-columns: 1fr; }
  .vp-expertise-card { min-height: 250px; }
  .vp-roadmap__indicator { display: none; }
  .vp-roadmap__rail { left: 18px; transform: none; }
  .vp-roadmap__step { display: block; min-height: 0; padding-left: 54px; }
  .vp-roadmap__step + .vp-roadmap__step { margin-top: 22px; }
  .vp-roadmap__card, .vp-roadmap__step:nth-of-type(odd) .vp-roadmap__card, .vp-roadmap__step:nth-of-type(even) .vp-roadmap__card { grid-column: auto; border-radius: 24px; opacity: 1; transform: none; }
  .vp-roadmap__step::before { position: absolute; left: 8px; width: 22px; height: 22px; border: 5px solid var(--vp-ivory); border-radius: 50%; background: var(--vp-blue); content: ""; }
  .vp-offer, .vp-offer--featured, .vp-offer--compact { grid-column: 1 / -1; }
  .vp-reform-date { position: relative; top: auto; }
  .vp-about-visual { min-height: 570px; order: 2; }
  .vp-cta-grid { grid-template-columns: 1fr; align-items: start; }
  .vp-footer-grid { grid-template-columns: 1fr 1fr; }
  .vp-footer-brand { grid-column: 1 / -1; }
  .vp-footer-column:last-child { grid-column: auto; }
  .vp-method-principles { grid-template-columns: 1fr; }
  .vp-case-study { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .vp-section { padding: 78px 0; }
  .vp-hero h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  .vp-hero-visual { min-height: 410px; }
  .vp-orbit__item { width: 76px; min-height: 76px; padding: 8px; font-size: 0.58rem; }
  .vp-orbit__core { width: 135px; }
  .vp-deadline-card { right: 0; bottom: -5px; }
  .vp-actions { align-items: stretch; flex-direction: column; }
  .vp-button { width: 100%; }
  .vp-marquee__group { gap: 38px; padding: 18px 19px; }
  .vp-problem { grid-template-columns: 42px 1fr; padding: 20px; }
  .vp-problem__number { width: 42px; height: 42px; }
  .vp-stats { grid-template-columns: 1fr; }
  .vp-stat { min-height: 150px; }
  .vp-carousel { min-height: 430px; }
  .vp-offer { min-height: 360px; }
  .vp-reform-date { padding: 28px; }
  .vp-about-visual { min-height: 510px; }
  .vp-about-circle { inset: 12% -35% 8% -45%; }
  .vp-profile-card { top: 16%; right: 2%; width: 82%; }
  .vp-profile-card__portrait, .vp-profile-card__portrait img { min-height: 240px; height: 240px; }
  .vp-float-tag { min-width: 105px; padding: 13px; font-size: 0.65rem; }
  .vp-float-tag--one { top: 5%; left: 0; }
  .vp-float-tag--two { right: 0; bottom: 3%; }
  .vp-float-tag--three { bottom: 0; left: 2%; }
  .vp-cta { padding: 36px 26px; border-radius: 28px; }
  .vp-footer-grid { grid-template-columns: 1fr; }
  .vp-footer-brand, .vp-footer-column:last-child { grid-column: auto; }
  .vp-footer-bottom { flex-direction: column; }
  .vp-contact-form { grid-template-columns: 1fr; }
  .vp-field--full { grid-column: auto; }
}

@media (pointer: coarse) {
  .vp-cursor, .vp-cursor-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .vp-arrival { display: none; }
  .vp-reveal { opacity: 1; transform: none; }
  .vp-highlight::after { transform: scaleX(1); }
  .vp-cursor, .vp-cursor-dot { display: none; }
}
