@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Rubik:wght@400;600&display=swap');

:root {
        --vdzu-bg: #fcfafb;
        --vdzu-bg-alt: #f6f1f3;
        --vdzu-text: #2a1a1f;
        --vdzu-muted: #705c62;
        --vdzu-border: #e0d7da;
        --vdzu-primary: #ad1140;
        --vdzu-primary-dark: #820c30;
        --vdzu-primary-fg: #ffffff;
        --vdzu-accent: #2ee671;
        --vdzu-dark-bg: #1c1922;
        --vdzu-dark-text: #f2f1f4;
        --vdzu-dark-muted: #3b3645;
        --vdzu-band-bg: #a5e3c4;
        --vdzu-band-text: #173024;
        --vdzu-radius: 10px;
        --vdzu-radius-btn: 10px;
        --vdzu-container: 1180px;
        --vdzu-gap: 104px;
        --vdzu-font-display: 'Space Grotesk', sans-serif;
        --vdzu-font-body: 'Rubik', sans-serif;
        --vdzu-shadow-sm: 0 1px 3px rgba(42,26,31,0.08), 0 1px 2px rgba(42,26,31,0.04);
        --vdzu-shadow-md: 0 4px 12px rgba(42,26,31,0.10), 0 2px 4px rgba(42,26,31,0.06);
        --vdzu-shadow-lg: 0 8px 24px rgba(42,26,31,0.12), 0 4px 8px rgba(42,26,31,0.06);
}

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

html { scroll-behavior: smooth; }

body {
        font-family: var(--vdzu-font-body);
        font-size: 1rem;
        line-height: 1.6;
        color: var(--vdzu-text);
        background: var(--vdzu-bg);
        -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
        font-family: var(--vdzu-font-display);
        letter-spacing: -0.02em;
        line-height: 1.15;
        overflow-wrap: anywhere;
        hyphens: auto;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

.container {
        max-width: var(--vdzu-container);
        margin: 0 auto;
        padding: 0 1.5rem;
}

.section {
        padding: var(--vdzu-gap) 0;
}

.section--light { background: var(--vdzu-bg); color: var(--vdzu-text); }
.section--alt { background: var(--vdzu-bg-alt); color: var(--vdzu-text); }
.section--dark { background: var(--vdzu-dark-bg); color: var(--vdzu-dark-text); }
.section--dark .muted, .section--dark p { color: var(--vdzu-dark-muted); }
.section--dark h2, .section--dark h3 { color: var(--vdzu-dark-text); }
.section--accent { background: color-mix(in srgb, var(--vdzu-accent) 12%, var(--vdzu-bg)); color: var(--vdzu-text); }
.section--band2 { background: var(--vdzu-band-bg); color: var(--vdzu-band-text); }
.section--band2 h1, .section--band2 h2 { color: var(--vdzu-band-text); }

.section-lead {
        font-size: 1.125rem;
        color: var(--vdzu-muted);
        max-width: 640px;
        margin-bottom: 2.5rem;
}

.eyebrow {
        display: inline-block;
        font-family: var(--vdzu-font-display);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--vdzu-primary);
        margin-bottom: 0.75rem;
}

.section--dark .eyebrow { color: var(--vdzu-accent); }
.section--band2 .eyebrow { color: var(--vdzu-band-text); opacity: 0.7; }

.btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4em;
        font-family: var(--vdzu-font-display);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.65em 1.4em;
        border-radius: var(--vdzu-radius-btn);
        border: 2px solid transparent;
        cursor: pointer;
        transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
        text-decoration: none;
        line-height: 1.3;
        white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
        background: var(--vdzu-primary);
        color: var(--vdzu-primary-fg);
        border-color: var(--vdzu-primary);
}
.btn-primary:hover { background: var(--vdzu-primary-dark); border-color: var(--vdzu-primary-dark); }

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

.btn-outline--light {
        background: transparent;
        color: var(--vdzu-dark-text);
        border-color: var(--vdzu-dark-text);
}
.btn-outline--light:hover { background: var(--vdzu-dark-text); color: var(--vdzu-dark-bg); }

.btn-ghost {
        background: transparent;
        color: var(--vdzu-muted);
        border-color: transparent;
}
.btn-ghost:hover { background: var(--vdzu-bg-alt); color: var(--vdzu-text); }

.media {
        overflow: hidden;
        border-radius: var(--vdzu-radius);
        background: linear-gradient(135deg, var(--vdzu-bg-alt) 0%, var(--vdzu-border) 100%);
        position: relative;
}
.media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--vdzu-radius); }
.media-3-2 { aspect-ratio: 3/2; }
.media-16-9 { aspect-ratio: 16/9; }
.media-4-3 { aspect-ratio: 4/3; }
.media-1-1 { aspect-ratio: 1/1; }
.media-3-4 { aspect-ratio: 3/4; }
.media-2-3 { aspect-ratio: 2/3; }
.media-21-9 { aspect-ratio: 21/9; }

.ughr {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        transition: background 0.25s, box-shadow 0.25s;
        background: transparent;
}

.ughr.is-scrolled {
        background: rgba(252,250,251,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--vdzu-shadow-sm);
}

.header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        gap: 1.5rem;
}

.header__logo {
        font-family: var(--vdzu-font-display);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--vdzu-primary);
        letter-spacing: -0.01em;
        flex-shrink: 0;
}

.uykh {
        display: flex;
        align-items: center;
        gap: 1.75rem;
}

.uykh a:not(.btn) {
        font-family: var(--vdzu-font-display);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--vdzu-text);
        transition: color 0.15s;
}
.uykh a:not(.btn):hover, .uykh a[aria-current="page"] { color: var(--vdzu-primary); }

.upxs {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
}
.upxs span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--vdzu-text);
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
}

.hero-editorial {
        padding-top: calc(68px + 3rem);
        padding-bottom: var(--vdzu-gap);
}
.hero-editorial__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
}
.hero-editorial__text { max-width: 560px; }
.hero-editorial__text h1 { margin-bottom: 1.25rem; }
.hero-editorial__lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        color: var(--vdzu-band-text);
        opacity: 0.8;
}
.hero-editorial__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.page-hero {
        padding-top: calc(68px + 3rem);
        padding-bottom: var(--vdzu-gap);
}
.page-hero__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
}
.page-hero__inner--stacked { grid-template-columns: 1fr; text-align: center; }
.page-hero__wide-media { margin-top: 2rem; }
.page-hero--compact .container { max-width: 720px; }
.page-hero__lead { font-size: 1.125rem; margin-top: 1rem; opacity: 0.8; }
.page-hero__text h1 { margin-bottom: 1rem; }

.split-text-image__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
}
.split-text-image__text h2 { margin-bottom: 1.25rem; }
.split-text-image__text p { color: var(--vdzu-muted); margin-bottom: 1rem; }
.split-text-image__text .btn { margin-top: 0.5rem; }

.checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
}
.checklist li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 600;
        font-size: 0.95rem;
}
.checklist li i { color: var(--vdzu-primary); font-size: 1.1rem; flex-shrink: 0; }

.gallery-grid__grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
        align-items: start;
}
.gallery-grid .eyebrow, .gallery-grid h2 { margin-bottom: 0.5rem; }

.stats-strip__inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
}
.stats-strip__number {
        display: block;
        font-family: var(--vdzu-font-display);
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 700;
        color: var(--vdzu-accent);
        line-height: 1;
        margin-bottom: 0.5rem;
}
.stats-strip__label {
        font-size: 0.9rem;
        color: var(--vdzu-dark-muted);
        font-family: var(--vdzu-font-display);
        font-weight: 600;
}

.newsletter-band__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
}
.newsletter-band__text h2 { margin-bottom: 0.75rem; }
.newsletter-band__text p { color: var(--vdzu-muted); }
.newsletter-band__form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-band__form input {
        flex: 1;
        min-width: 200px;
        padding: 0.65em 1em;
        border: 2px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius-btn);
        font-family: var(--vdzu-font-body);
        font-size: 0.95rem;
        background: var(--vdzu-bg);
        color: var(--vdzu-text);
        transition: border-color 0.15s;
}
.newsletter-band__form input:focus { outline: none; border-color: var(--vdzu-primary); }

.uwvi { position: relative; overflow: hidden; }
.udqx { display: flex; transition: transform 0.35s ease; }
.uzeb { flex: 0 0 100%; padding: 0 0.5rem; }
.uoks, .uvoc {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--vdzu-bg);
        border: 2px solid var(--vdzu-border);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s, border-color 0.15s;
        z-index: 2;
}
.uoks { left: 0; }
.uvoc { right: 0; }
.uoks:hover, .uvoc:hover { background: var(--vdzu-primary); border-color: var(--vdzu-primary); color: var(--vdzu-primary-fg); }

.testimonial-card {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
        align-items: start;
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2rem;
        box-shadow: var(--vdzu-shadow-sm);
        margin: 0 2.5rem;
}
.testimonial-card__avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__quote p { font-size: 1.05rem; font-style: italic; color: var(--vdzu-text); margin-bottom: 0.75rem; }
.testimonial-card__cite { font-size: 0.85rem; color: var(--vdzu-muted); font-weight: 600; font-style: normal; }
.testimonial-disclaimer {
        text-align: center;
        font-size: 0.8rem;
        color: var(--vdzu-muted);
        margin-top: 1.5rem;
}

.blog-grid__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
}
.blog-grid__cta { text-align: center; margin-top: 2.5rem; }

.blog-card {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        overflow: hidden;
        box-shadow: var(--vdzu-shadow-sm);
        transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--vdzu-shadow-md); transform: translateY(-2px); }
.blog-card__media-link { display: block; }
.blog-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.blog-card__title { font-size: 1.05rem; margin: 0.5rem 0 0.75rem; }
.blog-card__title a { color: var(--vdzu-text); transition: color 0.15s; }
.blog-card__title a:hover { color: var(--vdzu-primary); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--vdzu-muted); margin-bottom: 0.75rem; }
.blog-card__meta { font-size: 0.8rem; color: var(--vdzu-muted); font-family: var(--vdzu-font-display); font-weight: 600; }

.features-icons__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
}
.feature-card {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2rem;
        box-shadow: var(--vdzu-shadow-sm);
}
.feature-card__icon {
        width: 48px;
        height: 48px;
        border-radius: var(--vdzu-radius);
        background: color-mix(in srgb, var(--vdzu-primary) 10%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        font-size: 1.4rem;
        color: var(--vdzu-primary);
}
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.95rem; color: var(--vdzu-muted); margin: 0; }

.faq-accordion__inner {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        align-items: start;
}
.faq-accordion__list { display: flex; flex-direction: column; gap: 0; }

.ujjs { border-bottom: 1px solid var(--vdzu-border); }
.ujjs:first-child { border-top: 1px solid var(--vdzu-border); }

.ukso {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1.1rem 0;
        font-family: var(--vdzu-font-display);
        font-size: 1rem;
        font-weight: 600;
        color: var(--vdzu-text);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color 0.15s;
}
.ukso:hover { color: var(--vdzu-primary); }
.ukso::after {
        content: '+';
        font-size: 1.3rem;
        font-weight: 400;
        flex-shrink: 0;
        transition: transform 0.2s;
}
.ujjs.is-open .ukso { color: var(--vdzu-primary); }
.ujjs.is-open .ukso::after { transform: rotate(45deg); }

.uglg { display: none; padding-bottom: 1.1rem; }
.uglg p { font-size: 0.95rem; color: var(--vdzu-muted); margin: 0; }
.ujjs.is-open .uglg { display: block; }

.values__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
}
.values__grid--3 { grid-template-columns: repeat(3, 1fr); }

.value-card {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 1.75rem;
        box-shadow: var(--vdzu-shadow-sm);
}
.value-card__icon {
        width: 44px;
        height: 44px;
        border-radius: var(--vdzu-radius);
        background: color-mix(in srgb, var(--vdzu-primary) 10%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--vdzu-primary);
        margin-bottom: 1rem;
}
.value-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; color: var(--vdzu-muted); margin: 0; }

.cta-simple__inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-simple__inner h2 { margin-bottom: 1rem; }
.cta-simple__inner p { color: var(--vdzu-dark-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-simple__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.team__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
}
.team-card {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2rem;
        box-shadow: var(--vdzu-shadow-sm);
        text-align: center;
}
.team-card__photo {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 1.25rem;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.85rem; color: var(--vdzu-primary); font-weight: 600; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.9rem; color: var(--vdzu-muted); }

.bento__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
}
.bento__item {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2rem;
        box-shadow: var(--vdzu-shadow-sm);
}
.bento__item--wide { grid-column: span 2; }
.bento__item--accent { background: color-mix(in srgb, var(--vdzu-primary) 6%, var(--vdzu-bg)); }
.bento__icon {
        width: 44px;
        height: 44px;
        border-radius: var(--vdzu-radius);
        background: color-mix(in srgb, var(--vdzu-primary) 10%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--vdzu-primary);
        margin-bottom: 1rem;
}
.bento__item h3 { margin-bottom: 0.6rem; }
.bento__item p { font-size: 0.9rem; color: var(--vdzu-muted); margin: 0; }

.pricing__grid--2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
}
.pricing-card {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2.5rem 2rem;
        box-shadow: var(--vdzu-shadow-sm);
        position: relative;
}
.pricing-card--featured {
        border-color: var(--vdzu-primary);
        box-shadow: var(--vdzu-shadow-md);
}
.pricing-card__badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--vdzu-primary);
        color: var(--vdzu-primary-fg);
        font-size: 0.75rem;
        font-weight: 700;
        font-family: var(--vdzu-font-display);
        padding: 0.25em 0.9em;
        border-radius: 99px;
        white-space: nowrap;
}
.pricing-card__header { margin-bottom: 1.5rem; }
.pricing-card__header h3 { margin: 0.4rem 0 0.75rem; }
.pricing-card__price {
        font-family: var(--vdzu-font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--vdzu-primary);
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--vdzu-muted); }
.pricing-card__features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 2rem;
}
.pricing-card__features li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
}
.pricing-card__features li i { color: var(--vdzu-primary); flex-shrink: 0; }

.process__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 2rem;
}
.process-step {
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 2rem 1.5rem;
        box-shadow: var(--vdzu-shadow-sm);
}
.process-step__number {
        font-family: var(--vdzu-font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--vdzu-primary);
        opacity: 0.2;
        line-height: 1;
        margin-bottom: 0.75rem;
}
.process-step h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.process-step p { font-size: 0.875rem; color: var(--vdzu-muted); margin: 0; }

.quote-band__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-band__inner blockquote p {
        font-size: clamp(1.25rem, 2.5vw, 1.6rem);
        font-family: var(--vdzu-font-display);
        font-weight: 600;
        color: var(--vdzu-dark-text);
        margin-bottom: 1rem;
        font-style: italic;
}
.quote-band__inner blockquote cite { color: var(--vdzu-dark-muted); font-size: 0.9rem; }

.cta-band__inner { max-width: 640px; }
.cta-band__text h2 { margin-bottom: 1rem; }
.cta-band__text p { margin-bottom: 1.5rem; font-size: 1.05rem; }

.timeline__list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 2rem;
        position: relative;
        padding-left: 2rem;
        border-left: 2px solid var(--vdzu-border);
}
.timeline__item {
        position: relative;
        padding: 0 0 2.5rem 2rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
        position: absolute;
        left: -2.55rem;
        top: 0.3rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--vdzu-primary);
        border: 2px solid var(--vdzu-bg);
}
.timeline__year {
        display: inline-block;
        font-family: var(--vdzu-font-display);
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--vdzu-primary);
        margin-bottom: 0.3rem;
        letter-spacing: 0.04em;
}
.timeline__content h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.timeline__content p { font-size: 0.9rem; color: var(--vdzu-muted); margin: 0; }

.contact-section__inner {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: start;
}
.contact-section__details h2 { margin-bottom: 1.5rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.contact-list__icon {
        width: 36px;
        height: 36px;
        border-radius: var(--vdzu-radius);
        background: color-mix(in srgb, var(--vdzu-primary) 10%, transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--vdzu-primary);
        font-size: 1.1rem;
        flex-shrink: 0;
}
.contact-notice { margin-top: 2rem; font-size: 0.8rem; color: var(--vdzu-muted); border-top: 1px solid var(--vdzu-border); padding-top: 1rem; }

.uxjk h2, .contact-section__form-wrap h2 { margin-bottom: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-field label { font-size: 0.875rem; font-weight: 600; font-family: var(--vdzu-font-display); }
.form-field input, .form-field textarea {
        padding: 0.65em 1em;
        border: 2px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        font-family: var(--vdzu-font-body);
        font-size: 0.95rem;
        color: var(--vdzu-text);
        background: var(--vdzu-bg);
        transition: border-color 0.15s;
        resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--vdzu-primary); }
.form-field--checkbox label { display: flex; align-items: flex-start; gap: 0.6rem; font-weight: 400; cursor: pointer; }
.form-field--checkbox input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.875rem; }
.ujlo { font-size: 0.8rem; color: var(--vdzu-primary); display: none; }

.post-article__header { padding-top: calc(68px + 2rem); padding-bottom: 2.5rem; }
.post-article__header-inner { max-width: 720px; }
.post-article__header h1 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.post-back {
        display: inline-flex;
        align-items: center;
        gap: 0.4em;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--vdzu-band-text);
        opacity: 0.7;
        margin-bottom: 1rem;
        transition: opacity 0.15s;
}
.post-back:hover { opacity: 1; }
.post-article__meta { font-size: 0.875rem; color: var(--vdzu-band-text); opacity: 0.65; font-weight: 600; font-family: var(--vdzu-font-display); }
.post-article__cover { padding: 0 0 3rem; }
.post-article__cover-img { max-height: 520px; }
.post-article__body {
        max-width: 720px;
        padding-top: 0;
        padding-bottom: var(--vdzu-gap);
}
.post-article__lead { font-size: 1.125rem; color: var(--vdzu-muted); margin-bottom: 2rem; }
.post-article__body h2 { margin: 2rem 0 1rem; }
.post-article__body h3 { margin: 1.5rem 0 0.75rem; }
.post-article__body p { color: var(--vdzu-text); }
.post-article__quote {
        border-left: 4px solid var(--vdzu-primary);
        padding: 1.25rem 1.5rem;
        margin: 2rem 0;
        background: color-mix(in srgb, var(--vdzu-primary) 5%, var(--vdzu-bg));
        border-radius: 0 var(--vdzu-radius) var(--vdzu-radius) 0;
}
.post-article__quote p { font-size: 1.1rem; font-style: italic; color: var(--vdzu-text); margin: 0; }
.post-article__inline-img { margin: 2rem 0; }
.post-article__caption { font-size: 0.8rem; color: var(--vdzu-muted); margin-top: 0.5rem; font-style: italic; }
.post-article__footer { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--vdzu-border); }

.legal-article { padding-top: calc(68px + 3rem); }
.legal-article__inner { max-width: 760px; }
.legal-article__inner h1 { margin-bottom: 0.5rem; }
.legal-article__date { font-size: 0.85rem; color: var(--vdzu-muted); margin-bottom: 2.5rem; border-bottom: 1px solid var(--vdzu-border); padding-bottom: 1.5rem; }
.legal-article__inner h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--vdzu-text); }
.legal-article__inner p { font-size: 0.95rem; color: var(--vdzu-muted); }
.legal-article__inner a { color: var(--vdzu-primary); text-decoration: underline; }
.legal-article__inner em { font-style: italic; }

.thankyou-section { min-height: calc(100vh - 68px); display: flex; align-items: center; }
.thankyou-section__inner { text-align: center; max-width: 480px; margin: 0 auto; }
.thankyou-section__icon { font-size: 3rem; color: var(--vdzu-primary); margin-bottom: 1.5rem; }
.thankyou-section__inner h1 { margin-bottom: 1rem; }
.thankyou-section__inner p { color: var(--vdzu-muted); margin-bottom: 2rem; }

.notfound-section { min-height: calc(100vh - 68px); display: flex; align-items: center; }
.notfound-section__inner { text-align: center; max-width: 480px; margin: 0 auto; }
.notfound-section__code {
        display: block;
        font-family: var(--vdzu-font-display);
        font-size: 6rem;
        font-weight: 700;
        color: var(--vdzu-border);
        line-height: 1;
        margin-bottom: 1rem;
}
.notfound-section__inner h1 { margin-bottom: 1rem; }
.notfound-section__inner p { color: var(--vdzu-muted); margin-bottom: 2rem; }

.site-footer {
        background: var(--vdzu-dark-bg);
        color: var(--vdzu-dark-text);
        padding: 3rem 0 0;
}
.site-footer__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
}
.site-footer__logo {
        font-family: var(--vdzu-font-display);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--vdzu-primary);
}
.site-footer__brand p { font-size: 0.85rem; color: var(--vdzu-dark-muted); max-width: 400px; margin-top: 0.5rem; }
.site-footer__nav, .site-footer__legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
}
.site-footer__nav a, .site-footer__legal-nav a {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--vdzu-dark-muted);
        font-family: var(--vdzu-font-display);
        transition: color 0.15s;
}
.site-footer__nav a:hover, .site-footer__legal-nav a:hover { color: var(--vdzu-dark-text); }
.site-footer__contact p { font-size: 0.85rem; color: var(--vdzu-dark-muted); line-height: 1.8; }
.site-footer__bottom {
        width: 100%;
        border-top: 1px solid var(--vdzu-dark-muted);
        padding: 1.25rem 0;
        margin-top: 1rem;
}
.site-footer__bottom p { font-size: 0.8rem; color: var(--vdzu-dark-muted); text-align: center; }

.uhqx {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        max-width: 420px;
        background: var(--vdzu-bg);
        border: 1px solid var(--vdzu-border);
        border-radius: var(--vdzu-radius);
        padding: 1.5rem;
        box-shadow: var(--vdzu-shadow-lg);
        z-index: 200;
        display: none;
}
.uhqx.is-visible { display: block; }
.ucyj { font-size: 0.875rem; color: var(--vdzu-muted); margin-bottom: 1rem; }
.ucyj a { color: var(--vdzu-primary); text-decoration: underline; }
.upqu { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.upqu .btn { font-size: 0.8rem; padding: 0.5em 1em; }

.ugpw {
        position: fixed;
        inset: 0;
        background: rgba(28,25,34,0.6);
        z-index: 300;
        display: none;
        align-items: center;
        justify-content: center;
}
.ugpw.is-visible { display: flex; }
.utoy {
        background: var(--vdzu-bg);
        border-radius: var(--vdzu-radius);
        padding: 2rem;
        max-width: 440px;
        width: 90%;
        box-shadow: var(--vdzu-shadow-lg);
}
.utoy h3 { margin-bottom: 1.25rem; }
.utoy label {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        cursor: pointer;
}
.utoy .upqu { margin-top: 1.5rem; }

.udss {
        position: fixed;
        bottom: 1.5rem;
        left: 1.5rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--vdzu-primary);
        color: var(--vdzu-primary-fg);
        border: none;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: var(--vdzu-shadow-md);
        transition: background 0.15s, transform 0.15s;
        z-index: 150;
}
.udss.is-visible { display: flex; }
.udss:hover { background: var(--vdzu-primary-dark); transform: translateY(-2px); }

.reveal { opacity: 1; transform: none; }

@media (min-width: 1024px) {
        .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.45s ease, transform 0.45s ease; }
        .reveal.is-visible { opacity: 1; transform: none; }
}

@media (max-width: 1023px) {
        :root { --vdzu-gap: 64px; }
        .hero-editorial__inner { grid-template-columns: 1fr; }
        .page-hero__inner { grid-template-columns: 1fr; }
        .split-text-image__inner { grid-template-columns: 1fr; gap: 2rem; }
        .newsletter-band__inner { grid-template-columns: 1fr; gap: 2rem; }
        .gallery-grid__grid { grid-template-columns: repeat(2, 1fr); }
        .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
        .values__grid { grid-template-columns: repeat(2, 1fr); }
        .values__grid--3 { grid-template-columns: repeat(2, 1fr); }
        .blog-grid__grid { grid-template-columns: repeat(2, 1fr); }
        .features-icons__grid { grid-template-columns: repeat(2, 1fr); }
        .team__grid { grid-template-columns: repeat(2, 1fr); }
        .bento__grid { grid-template-columns: 1fr 1fr; }
        .bento__item--wide { grid-column: span 2; }
        .process__grid { grid-template-columns: repeat(2, 1fr); }
        .faq-accordion__inner { grid-template-columns: 1fr; gap: 1.5rem; }
        .contact-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 767px) {
        :root { --vdzu-gap: 48px; }

        .upxs { display: flex; }
        .uykh {
                display: none;
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                background: var(--vdzu-bg);
                flex-direction: column;
                padding: 1.5rem;
                gap: 1rem;
                border-top: 1px solid var(--vdzu-border);
                box-shadow: var(--vdzu-shadow-md);
                z-index: 99;
        }
        .uykh.is-open { display: flex; }
        .uykh a:not(.btn) { font-size: 1rem; }

        .gallery-grid__grid { grid-template-columns: repeat(2, 1fr); }
        .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
        .values__grid { grid-template-columns: 1fr 1fr; }
        .values__grid--3 { grid-template-columns: 1fr; }
        .blog-grid__grid { grid-template-columns: 1fr; }
        .features-icons__grid { grid-template-columns: 1fr; }
        .team__grid { grid-template-columns: 1fr; }
        .bento__grid { grid-template-columns: 1fr; }
        .bento__item--wide { grid-column: span 1; }
        .process__grid { grid-template-columns: 1fr; }
        .pricing__grid--2 { grid-template-columns: 1fr; }
        .testimonial-card { grid-template-columns: 1fr; text-align: center; }
        .testimonial-card__avatar { margin: 0 auto; }
        .hero-editorial__actions { flex-direction: column; }
        .cta-simple__actions { flex-direction: column; align-items: center; }
        .uhqx { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uhqx{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.uhqx.is-visible,.cookie-banner--visible,.uhqx.show,.uhqx.active{transform:none !important}
.uhqx a{color:inherit;text-decoration:underline}
.uhqx button{cursor:pointer}
.ugpw{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.ugpw.is-visible,.cookie-modal--visible,.ugpw.show,.ugpw.active{display:flex !important}
.utgu,.ugpw>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.reveal.is-visible,.reveal.is-in,.reveal.in-view,.reveal.visible,.reveal.show,.reveal.active{opacity:1 !important;transform:none !important}
.uwin .ulnk,.uwin .uhzh,.uwin .uzoa,.uwin .uwvi,.ukhh .ulnk,.ukhh .uhzh,.ukhh .uzoa,.ukhh .uwvi{background:#fff !important;color:#1a1a1a !important}
.ulnk,.uhzh{color:#1a1a1a !important}
.ulnk label,.uhzh label,.ulnk p,.uhzh p,.ulnk .ucot,.ulnk span,.uhzh span,.ucbd,.urrw,.uzoa .uvyb,.uzoa .uvyb *{color:#1a1a1a !important}
.ucbd,.urrw{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ulnk .uzhb{color:#1a1a1a !important}
.ulnk .uzhb.is-sel{color:#fff !important}
.uaao .ujlo{display:none}
.uaao .ujlo.is-visible{display:block !important;color:#c0392b}
.uaao .uida,.uaao [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uaao{color:#1a1a1a}
.uwin .uaao,.ukhh .uaao{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uwnz{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uwnz img{width:100%;height:100%;object-fit:cover}
.uori,.uies{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uori img,.uies img{width:100%;height:100%;object-fit:cover;display:block}
.uori img{opacity:.28}
.uies img{opacity:.07}
*:has(> .uori),*:has(> .uies){position:relative}
.uqmy{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uqmy .uwpn{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uqmy .ujxf{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uxlt{margin:1.4rem auto;max-width:920px}
.uxlt img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.usnq{padding:3rem 0}
.ufpz{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ufpz img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uwvi{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.udqx{display:flex;overflow:hidden;gap:0 !important}
.uzeb{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uzov{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uoks{left:.5rem}.uvoc{right:.5rem}
.uzoa .uvyb{display:none}.uzoa .uvyb.is-active{display:block}
.ulnk .ufhx{display:block !important}
.ulnk .uuwx{display:flex;flex-wrap:wrap;gap:.5rem}
.ulnk .uzhb{cursor:pointer}
