:root {
    --color-primary: #5E8CAA;
    --color-secondary: #9CB8D5;
    --color-tertiary: #F3E9DF;
    --color-quaternary: #CAB9A6;
    --color-accent: #4B7B9C;
    --color-white: #ffffff;
    --color-gray-light: #f7f8f9;
    --color-gray: #6d7680;
    --color-dark: #303741;
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

.vz-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
}

.vz-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

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

.vz-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(94, 140, 170, 0.1);
    z-index: 1000;
    padding: 0.875rem 0;
    box-shadow: 0 2px 16px rgba(48, 55, 65, 0.04);
    transition: var(--transition);
}

.vz-navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.vz-navbar__logo img {
    width: 38px;
    height: 38px;
}

.vz-navbar__logo span {
    color: var(--color-primary);
}

.vz-navbar__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vz-navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vz-navbar__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    display: block;
    transition: var(--transition);
}

.vz-navbar__link:hover,
.vz-navbar__link.active {
    color: var(--color-primary);
    background: rgba(94, 140, 170, 0.08);
}

.vz-navbar__cta {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    margin-left: 0.75rem;
    transition: var(--transition);
    display: inline-block;
}

.vz-navbar__cta:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-1px);
}

.vz-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.vz-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.vz-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vz-burger.open span:nth-child(2) {
    opacity: 0;
}

.vz-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.75rem;
    border-radius: 7px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.vz-btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
}

.vz-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(94, 140, 170, 0.38);
    color: var(--color-white);
}

.vz-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.vz-btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.vz-btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.vz-btn--white:hover {
    background: var(--color-tertiary);
    color: var(--color-accent);
}

.vz-hero {
    min-height: 100vh;
    padding: 10rem 0 6rem;
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, rgba(94, 140, 170, 0.05) 0%, rgba(243, 233, 223, 0.45) 100%);
    position: relative;
    overflow: hidden;
}

.vz-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(156, 184, 213, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.vz-hero__label {
    margin-bottom: 1.25rem;
}

.vz-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.875rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.vz-hero__title em {
    font-style: normal;
    color: var(--color-primary);
}

.vz-hero__text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.vz-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.vz-hero__stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.vz-hero__stat-num {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.vz-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--color-gray);
}

.vz-hero__visual {
    position: relative;
    padding: 1rem 0;
}

.vz-hero__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(48, 55, 65, 0.13);
}

.vz-hero__img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vz-hero__badge {
    position: absolute;
    bottom: -10px;
    left: -24px;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1rem 1.375rem;
    box-shadow: 0 8px 36px rgba(48, 55, 65, 0.1);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border: 1px solid rgba(94, 140, 170, 0.12);
}

.vz-hero__badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vz-hero__badge-text strong {
    display: block;
    font-size: 1rem;
    color: var(--color-dark);
}

.vz-hero__badge-text span {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.vz-manifesto {
    padding: 7rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.vz-manifesto__bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.vz-manifesto__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.vz-manifesto__label {
    color: var(--color-secondary);
    margin-bottom: 1.75rem;
}

.vz-manifesto__quote {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
    max-width: 860px;
    margin: 0 auto 2rem;
}

.vz-manifesto__quote em {
    font-style: normal;
    color: var(--color-secondary);
}

.vz-manifesto__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.vz-pillars {
    padding: 7rem 0;
    background: var(--color-tertiary);
}

.vz-pillars__header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.vz-pillars__header .vz-section-lead {
    margin: 0 auto;
}

.vz-pillar {
    border-top: 2px solid rgba(94, 140, 170, 0.18);
    padding-top: 2.25rem;
    height: 100%;
    transition: var(--transition);
}

.vz-pillar:hover {
    border-top-color: var(--color-primary);
}

.vz-pillar__icon-wrap {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1.5px dashed rgba(94, 140, 170, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
}

.vz-pillar__icon-wrap::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(94, 140, 170, 0.08);
}

.vz-pillar__icon-wrap i {
    font-size: 1.25rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.vz-pillar:hover .vz-pillar__icon-wrap i {
    color: var(--color-accent);
}

.vz-pillar__num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-quaternary);
    margin-bottom: 0.5rem;
}

.vz-pillar__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--color-dark);
}

.vz-pillar__text {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.75;
}

.vz-panorama {
    padding: 6rem 0;
    background: var(--color-white);
}

.vz-panorama__wrap {
    position: relative;
    max-width: 88%;
    margin: 0 auto;
}

.vz-panorama__img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 48px rgba(48, 55, 65, 0.1);
}

.vz-panorama__caption {
    position: absolute;
    right: -3.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
}

.vz-panorama__content {
    text-align: center;
    max-width: 720px;
    margin: 3rem auto 0;
}

.vz-panorama__content p {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-top: 0.875rem;
    line-height: 1.8;
}

.vz-timeline {
    padding: 7rem 0;
    background: var(--color-gray-light);
}

.vz-timeline__header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.vz-timeline__track {
    position: relative;
    display: flex;
    gap: 0;
}

.vz-timeline__track::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 9px;
    right: 9px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.vz-timeline__step {
    flex: 1;
    padding-top: 5.5rem;
    padding-right: 1.5rem;
    position: relative;
}

.vz-timeline__step:last-child {
    padding-right: 0;
}

.vz-timeline__dot {
    position: absolute;
    top: 28px;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-gray-light);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.vz-timeline__thumb {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
}

.vz-timeline__step-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-quaternary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.vz-timeline__step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.375rem;
}

.vz-timeline__step-text {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.65;
}

.vz-form-section {
    padding: 7rem 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.vz-form-section::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.vz-form-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(75, 123, 156, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.vz-form-section__inner {
    position: relative;
    z-index: 1;
}

.vz-form-section__title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.875rem;
}

.vz-form-section__lead {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.vz-form-section__img-wrap {
    border-radius: 14px;
    overflow: hidden;
}

.vz-form-section__img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vz-form {
    background: var(--color-white);
    border-radius: 14px;
    padding: 2.5rem;
}

.vz-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.375rem;
}

.vz-form .form-control {
    border: 1.5px solid rgba(94, 140, 170, 0.22);
    border-radius: 7px;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: var(--transition);
}

.vz-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(94, 140, 170, 0.12);
    outline: none;
}

.vz-form .form-control::placeholder {
    color: rgba(109, 118, 128, 0.55);
}

.vz-error {
    font-size: 0.8rem;
    color: #c0392b;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.1rem;
}

.vz-form__submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border: none;
    border-radius: 7px;
    padding: 0.9375rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vz-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(94, 140, 170, 0.45);
}

.vz-page-hero {
    padding: 9.5rem 0 5.5rem;
    background: linear-gradient(140deg, rgba(94, 140, 170, 0.06) 0%, var(--color-tertiary) 100%);
    text-align: center;
}

.vz-page-hero__label {
    margin-bottom: 1rem;
}

.vz-page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.375rem);
    margin-bottom: 1.125rem;
}

.vz-page-hero__sub {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.vz-dna {
    padding: 7rem 0;
    background: var(--color-white);
}

.vz-dna__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(48, 55, 65, 0.1);
}

.vz-dna__img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vz-dna__text h2 {
    margin-bottom: 1.25rem;
}

.vz-dna__text p {
    color: var(--color-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.vz-dna__list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.vz-dna__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: var(--color-gray);
}

.vz-dna__list li i {
    color: var(--color-primary);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.vz-vision {
    padding: 7rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.vz-vision__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    line-height: 1;
}

.vz-vision__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.vz-vision__label {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.vz-vision__text {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--color-white);
    line-height: 1.55;
    font-weight: 400;
}

.vz-vision__text strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.vz-values {
    padding: 7rem 0;
    background: var(--color-tertiary);
}

.vz-values__header {
    margin-bottom: 4rem;
}

.vz-values__item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(94, 140, 170, 0.15);
}

.vz-values__item:last-child {
    border-bottom: none;
}

.vz-values__num {
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(94, 140, 170, 0.14);
    line-height: 1;
    min-width: 90px;
    text-align: right;
    flex-shrink: 0;
}

.vz-values__content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.vz-values__content p {
    color: var(--color-gray);
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 600px;
}

.vz-paths {
    padding: 7rem 0;
    background: var(--color-white);
}

.vz-paths__header {
    text-align: center;
    margin-bottom: 4rem;
}

.vz-paths__header .vz-section-lead {
    margin: 0 auto;
}

.vz-path-card {
    border: 1.5px solid rgba(94, 140, 170, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vz-path-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 36px rgba(94, 140, 170, 0.12);
    transform: translateY(-4px);
}

.vz-path-card__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vz-path-card__body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vz-path-card__tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(94, 140, 170, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.875rem;
}

.vz-path-card__title {
    font-size: 1.175rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.vz-path-card__text {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.vz-path-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: var(--transition);
}

.vz-path-card__link:hover {
    color: var(--color-accent);
    gap: 0.625rem;
}

.vz-why {
    padding: 6rem 0;
    background: var(--color-tertiary);
}

.vz-why__header {
    text-align: center;
    margin-bottom: 4rem;
}

.vz-why__item {
    text-align: center;
    padding: 1.5rem;
}

.vz-why__icon {
    width: 64px;
    height: 64px;
    background: rgba(94, 140, 170, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-primary);
    font-size: 1.375rem;
    transition: var(--transition);
}

.vz-why__item:hover .vz-why__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.vz-why__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vz-why__text {
    font-size: 0.875rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.vz-faq {
    padding: 7rem 0;
    background: var(--color-gray-light);
}

.vz-faq__header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    border-bottom: 1px solid rgba(94, 140, 170, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.375rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1rem;
    gap: 1rem;
    user-select: none;
}

.faq-question i {
    color: var(--color-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--color-gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
    line-height: 1.75;
}

.faq-answer.active {
    max-height: 320px;
    padding-bottom: 1.375rem;
}

.vz-contact {
    padding: 7rem 0;
    background: var(--color-white);
}

.vz-contact__info-block {
    padding: 2.5rem;
    background: var(--color-gray-light);
    border-radius: 14px;
    height: 100%;
}

.vz-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vz-contact__info-item:last-child {
    margin-bottom: 0;
}

.vz-contact__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(94, 140, 170, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.vz-contact__info-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.vz-contact__info-value {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9375rem;
}

.vz-contact__form-wrap .vz-form {
    box-shadow: 0 4px 24px rgba(48, 55, 65, 0.07);
    border: 1px solid rgba(94, 140, 170, 0.1);
}

.vz-thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(140deg, rgba(94, 140, 170, 0.06) 0%, var(--color-tertiary) 100%);
}

.vz-thanks__box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(48, 55, 65, 0.1);
}

.vz-thanks__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2rem;
    color: white;
}

.vz-thanks__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vz-thanks__text {
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vz-legal {
    padding: 9.5rem 0 6rem;
}

.vz-legal h1 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.vz-legal__updated {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    display: block;
}

.vz-legal h2 {
    font-size: 1.25rem;
    margin: 2.5rem 0 0.875rem;
    color: var(--color-primary);
}

.vz-legal p,
.vz-legal li {
    color: var(--color-gray);
    margin-bottom: 0.875rem;
    line-height: 1.8;
    font-size: 0.9375rem;
}

.vz-legal ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.vz-legal a {
    color: var(--color-primary);
}

.vz-legal a:hover {
    color: var(--color-accent);
}

.vz-footer {
    background: var(--color-dark);
    padding: 4.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.vz-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.875rem;
}

.vz-footer__logo img {
    width: 32px;
    height: 32px;
}

.vz-footer__tagline {
    font-size: 0.875rem;
    margin-bottom: 1.625rem;
    line-height: 1.6;
}

.vz-footer__social {
    display: flex;
    gap: 0.625rem;
}

.vz-footer__social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    transition: var(--transition);
}

.vz-footer__social a:hover {
    background: var(--color-primary);
    color: white;
}

.vz-footer__heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.vz-footer__links li {
    margin-bottom: 0.5rem;
}

.vz-footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.52);
    transition: var(--transition);
}

.vz-footer__links a:hover {
    color: var(--color-secondary);
}

.vz-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 0.625rem;
}

.vz-footer__contact-item i {
    color: var(--color-secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.vz-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.75rem;
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.84rem;
}

.vz-footer__bottom-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.vz-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.84rem;
    transition: var(--transition);
}

.vz-footer__bottom-links a:hover {
    color: var(--color-secondary);
}

#cookieNotice {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 440px;
    background: var(--color-white);
    border-radius: 14px;
    padding: 1.625rem;
    box-shadow: 0 8px 48px rgba(48, 55, 65, 0.14);
    z-index: 9999;
    border: 1.5px solid rgba(94, 140, 170, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(14px);
}

#cookieNotice.show {
    opacity: 1;
    transform: translateY(0);
}

#cookieNotice.hide {
    opacity: 0;
    transform: translateY(14px);
}

.vz-cookie__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.vz-cookie__text {
    font-size: 0.83rem;
    color: var(--color-gray);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.vz-cookie__text a {
    color: var(--color-primary);
}

.vz-cookie__actions {
    display: flex;
    gap: 0.625rem;
}

.vz-cookie__btn {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 7px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.vz-cookie__btn--accept {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
}

.vz-cookie__btn--accept:hover {
    opacity: 0.9;
}

.vz-cookie__btn--decline {
    background: var(--color-gray-light);
    color: var(--color-gray);
    border: 1.5px solid rgba(94, 140, 170, 0.15);
}

.vz-cookie__btn--decline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .vz-burger {
        display: flex;
    }

    .vz-navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid rgba(94, 140, 170, 0.1);
        padding: 1rem 1.25rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        box-shadow: 0 10px 28px rgba(48, 55, 65, 0.08);
    }

    .vz-navbar__menu.open {
        display: flex;
    }

    .vz-navbar__nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .vz-navbar__link {
        width: 100%;
        padding: 0.625rem 0.75rem;
    }

    .vz-navbar__cta {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: stretch;
        text-align: center;
    }

    .vz-hero {
        padding: 8rem 0 4rem;
    }

    .vz-hero__badge {
        display: none;
    }

    .vz-panorama__caption {
        display: none;
    }

    .vz-panorama__wrap {
        max-width: 100%;
    }

    .vz-values__num {
        font-size: 3rem;
        min-width: 60px;
    }
}

@media (max-width: 767px) {
    .vz-manifesto,
    .vz-pillars,
    .vz-timeline,
    .vz-form-section,
    .vz-dna,
    .vz-vision,
    .vz-values,
    .vz-paths,
    .vz-faq,
    .vz-contact,
    .vz-why {
        padding: 4.5rem 0;
    }

    .vz-panorama {
        padding: 4rem 0;
    }

    .vz-form {
        padding: 1.75rem;
    }

    .vz-form-section__img-wrap {
        display: none;
    }

    .vz-timeline__track {
        flex-direction: column;
        gap: 2.5rem;
    }

    .vz-timeline__track::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .vz-timeline__step {
        padding-top: 0;
        padding-left: 2.5rem;
        padding-right: 0;
    }

    .vz-timeline__dot {
        top: 0;
        left: 0;
    }

    .vz-hero__stats {
        gap: 1.5rem;
    }

    .vz-values__item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vz-values__num {
        text-align: left;
        font-size: 2.5rem;
        min-width: unset;
    }

    .vz-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .vz-footer__bottom-links {
        justify-content: center;
    }

    #cookieNotice {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: 100%;
    }

    .vz-thanks__box {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
}