:root {
  --vfsg-accent: #1A4FBF;
  --vfsg-accent-dark: #0f3a8f;
  --vfsg-cobalt: #1A4FBF;
  --vfsg-red-accent: #D63230;
  --vfsg-bg: #ffffff;
  --vfsg-bg-alt: #f3f5fb;
  --vfsg-text: #101828;
  --vfsg-muted: #5a6272;
  --vfsg-border: #dde2ee;
  --vfsg-font-display: "Sora", system-ui, sans-serif;
  --vfsg-font-body: "DM Sans", system-ui, sans-serif;
  --vfsg-space-1: 0.25rem;
  --vfsg-space-2: 0.5rem;
  --vfsg-space-4: 1rem;
  --vfsg-space-6: 1.5rem;
  --vfsg-space-8: 2rem;
  --vfsg-space-12: 3rem;
  --vfsg-space-16: 4rem;
  --vfsg-space-20: 5rem;
  --vfsg-radius-sm: 0.375rem;
  --vfsg-radius: 0.75rem;
  --vfsg-radius-lg: 1.25rem;
  --vfsg-radius-pill: 999px;
  --vfsg-shadow-sm: 0 1px 3px rgba(16,24,40,0.06);
  --vfsg-shadow-md: 0 6px 24px rgba(16,24,40,0.10);
  --vfsg-shadow-lg: 0 18px 48px rgba(16,24,40,0.14);
  --vfsg-transition: 0.28s ease;
  --vfsg-max-width: 1200px;
  --vfsg-header-height: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--vfsg-font-body); color: var(--vfsg-text); background: var(--vfsg-bg); line-height: 1.65; font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem); }
h1, h2, h3, h4, h5 { font-family: var(--vfsg-font-display); line-height: 1.15; color: var(--vfsg-text); }
h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

.container { width: 92%; max-width: var(--vfsg-max-width); margin-inline: auto; }
.section { padding: var(--vfsg-space-20) 0; }
.section-alt { background: var(--vfsg-bg-alt); }
.uqdc { background: var(--vfsg-text); color: #fff; }
.uqdc h1, .uqdc h2, .uqdc h3, .uqdc h4 { color: #fff; }
.uqdc .section-title { color: #fff; }
.ufsr { background: var(--vfsg-accent); color: #fff; }
.ufsr h2, .ufsr h3, .ufsr .section-title { color: #fff; }
.ufsr .btn-outline { border-color: #fff; color: #fff; }
.ufsr .btn-outline:hover { background: #fff; color: var(--vfsg-accent); }

.section-eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vfsg-accent); margin-bottom: var(--vfsg-space-4); }
.accent-eyebrow { color: rgba(255,255,255,0.8); }
.section-title { margin-bottom: var(--vfsg-space-4); }
.section-lead { color: var(--vfsg-muted); max-width: 640px; margin-bottom: var(--vfsg-space-8); }
.hl { color: var(--vfsg-accent); }
.mt-6 { margin-top: var(--vfsg-space-6); }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.6rem; border-radius: var(--vfsg-radius-pill); font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--vfsg-transition); font-family: var(--vfsg-font-display); font-size: 0.95rem; }
.btn-primary { background: var(--vfsg-accent); color: #fff; }
.btn-primary:hover { background: var(--vfsg-accent-dark); }
.btn-outline { background: transparent; border-color: var(--vfsg-accent); color: var(--vfsg-accent); }
.btn-outline:hover { background: var(--vfsg-accent); color: #fff; }
.btn-ghost-white { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-white { background: #fff; color: var(--vfsg-accent); border-color: #fff; }
.btn-white:hover { background: var(--vfsg-bg-alt); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }

.disclosure-bar { background: var(--vfsg-accent-dark); color: rgba(255,255,255,0.9); text-align: center; padding: 0.45rem var(--vfsg-space-4); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; }

.uohj { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--vfsg-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--vfsg-header-height); }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--vfsg-font-display); font-weight: 700; font-size: 1.05rem; color: var(--vfsg-text); }
.logo-mark { width: 36px; height: 36px; background: var(--vfsg-accent); border-radius: var(--vfsg-radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.logo-text { color: var(--vfsg-text); }
.ukkn { display: flex; align-items: center; gap: var(--vfsg-space-6); }
.nav-link { font-weight: 500; color: var(--vfsg-muted); transition: var(--vfsg-transition); font-size: 0.95rem; }
.nav-link:hover, .nav-link.active { color: var(--vfsg-accent); }
.nav-cta { background: var(--vfsg-accent); color: #fff; padding: 0.5rem 1.2rem; border-radius: var(--vfsg-radius-pill); font-weight: 600; }
.nav-cta:hover { background: var(--vfsg-accent-dark); color: #fff; }
.uwaz { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0.25rem; }
.uwaz span { width: 24px; height: 2px; background: var(--vfsg-text); transition: var(--vfsg-transition); display: block; }
.uohj.is-scrolled { box-shadow: var(--vfsg-shadow-sm); }

.hero-fullscreen { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-media { position: absolute; inset: 0; z-index: 0; border-radius: 0; }
.hero-bg-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,24,64,0.82) 0%, rgba(26,79,191,0.55) 100%); }
.hero-content-box { position: relative; z-index: 2; max-width: 720px; color: #fff; padding: var(--vfsg-space-20) 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: var(--vfsg-space-6); background: rgba(255,255,255,0.1); padding: 0.4rem 0.9rem; border-radius: var(--vfsg-radius-pill); }
.hero-title { font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4rem); color: #fff; margin-bottom: var(--vfsg-space-6); font-weight: 800; }
.hero-title .hl { color: #6EB0FF; }
.hero-text { font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem); color: rgba(255,255,255,0.85); margin-bottom: var(--vfsg-space-8); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); margin-bottom: var(--vfsg-space-8); }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); }
.hero-float-card { display: inline-flex; align-items: center; gap: 0.45rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 0.45rem 0.9rem; border-radius: var(--vfsg-radius-pill); font-size: 0.85rem; font-weight: 600; }

.subnav { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); justify-content: center; padding: 0.7rem var(--vfsg-space-4); border-bottom: 1px solid var(--vfsg-border); background: var(--vfsg-bg); position: sticky; top: var(--vfsg-header-height); z-index: 40; }
.subnav a { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.85rem; border-radius: var(--vfsg-radius-pill); background: var(--vfsg-bg-alt); color: var(--vfsg-muted); font-size: 0.85rem; font-weight: 500; transition: var(--vfsg-transition); }
.subnav a:hover { background: var(--vfsg-accent); color: #fff; }

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.pillar-card { background: #fff; border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); transition: var(--vfsg-transition); }
.pillar-card:hover { box-shadow: var(--vfsg-shadow-md); transform: translateY(-3px); border-color: var(--vfsg-accent); }
.pillar-icon { width: 48px; height: 48px; background: var(--vfsg-bg-alt); border-radius: var(--vfsg-radius); display: flex; align-items: center; justify-content: center; color: var(--vfsg-accent); font-size: 1.3rem; margin-bottom: var(--vfsg-space-6); }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vfsg-space-12); align-items: center; }
.split-reverse .media { order: -1; }
.split-text { min-width: 0; }
.split-text h2 { margin-bottom: var(--vfsg-space-4); }
.split-text p { color: var(--vfsg-muted); margin-bottom: var(--vfsg-space-4); }

.check-list { list-style: none; margin: var(--vfsg-space-6) 0; display: grid; gap: 0.6rem; }
.check-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.check-list .fa-check { color: var(--vfsg-accent); flex-shrink: 0; }
.check-list .fa-xmark { flex-shrink: 0; }
.check-list .red { color: var(--vfsg-red-accent); }

.media { position: relative; overflow: hidden; border-radius: var(--vfsg-radius-lg); background: linear-gradient(135deg, var(--vfsg-accent) 0%, var(--vfsg-bg-alt) 100%); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-16x9 { aspect-ratio: 16/9; }
.media-4x3 { aspect-ratio: 4/3; }
.media-1x1 { aspect-ratio: 1/1; }
.media-3x4 { aspect-ratio: 3/4; }

.bigstat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--vfsg-space-8); text-align: center; margin-top: var(--vfsg-space-8); }
.bigstat b { display: block; font-family: var(--vfsg-font-display); font-size: clamp(2.2rem, 1.5rem + 2.2vw, 3.2rem); color: #fff; font-weight: 800; line-height: 1; }
.bigstat span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.4rem; }
.stat-disclaimer { text-align: center; color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-top: var(--vfsg-space-8); }

.timeline-h { display: flex; justify-content: space-between; gap: var(--vfsg-space-4); position: relative; margin-top: var(--vfsg-space-8); padding-top: var(--vfsg-space-8); }
.timeline-h::before { content: ""; position: absolute; left: 0; right: 0; top: 20px; height: 2px; background: var(--vfsg-border); }
.tl-node { position: relative; flex: 1; text-align: center; }
.tl-node::before { content: ""; position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--vfsg-accent); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--vfsg-accent); }
.tl-time { display: block; font-family: var(--vfsg-font-display); font-weight: 700; color: var(--vfsg-accent); font-size: 0.9rem; margin-bottom: 0.4rem; }
.tl-node h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.tl-node p { font-size: 0.82rem; color: var(--vfsg-muted); }
.timeline-disclaimer { text-align: center; color: var(--vfsg-muted); font-size: 0.82rem; margin-top: var(--vfsg-space-6); }

.timeline-v { display: grid; gap: var(--vfsg-space-8); position: relative; padding-left: var(--vfsg-space-12); margin-top: var(--vfsg-space-8); }
.timeline-v::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--vfsg-border); }
.tl-step { position: relative; }
.tl-dot { position: absolute; left: -44px; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--vfsg-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.tl-content h4 { margin-bottom: 0.3rem; }
.tl-content p { color: var(--vfsg-muted); font-size: 0.92rem; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.price-card { position: relative; background: #fff; border: 2px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); transition: var(--vfsg-transition); display: flex; flex-direction: column; gap: var(--vfsg-space-4); }
.price-card:hover { border-color: var(--vfsg-accent); box-shadow: var(--vfsg-shadow-md); transform: translateY(-4px); }
.price-card--featured { border-color: var(--vfsg-accent); }
.price-badge { position: absolute; top: -12px; right: 20px; background: var(--vfsg-accent); color: #fff; padding: 0.25rem 0.8rem; border-radius: var(--vfsg-radius-pill); font-size: 0.78rem; font-weight: 700; }
.price-icon { width: 44px; height: 44px; background: var(--vfsg-bg-alt); border-radius: var(--vfsg-radius); display: flex; align-items: center; justify-content: center; color: var(--vfsg-accent); font-size: 1.2rem; }
.price-card h3 { font-size: 1.15rem; }
.price { font-size: 2rem; font-weight: 800; color: var(--vfsg-accent); font-family: var(--vfsg-font-display); margin: 0; }
.price-desc { color: var(--vfsg-muted); font-size: 0.85rem; }
.price-features { list-style: none; display: grid; gap: 0.5rem; flex: 1; }
.price-features li { font-size: 0.9rem; color: var(--vfsg-muted); padding: 0.4rem 0; border-bottom: 1px solid var(--vfsg-border); display: flex; align-items: center; gap: 0.5rem; }
.price-features li::before { content: "✓"; color: var(--vfsg-accent); font-weight: 700; flex-shrink: 0; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.testimonial { background: rgba(255,255,255,0.07); border-left: 4px solid var(--vfsg-accent); padding: var(--vfsg-space-8); border-radius: var(--vfsg-radius); font-style: italic; color: rgba(255,255,255,0.9); }
.testimonial p { margin-bottom: var(--vfsg-space-4); }
.testimonial cite { font-style: normal; color: #6EB0FF; font-weight: 600; font-size: 0.9rem; }
.testimonial-disclaimer { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: var(--vfsg-space-8); }

.cta-band { padding: var(--vfsg-space-20) 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: var(--vfsg-space-4); }
.cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: var(--vfsg-space-8); max-width: 520px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); justify-content: center; }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.trust-card { background: var(--vfsg-bg); border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); color: var(--vfsg-text); }
.trust-card i { font-size: 1.6rem; color: var(--vfsg-accent); margin-bottom: var(--vfsg-space-4); display: block; }
.trust-card h3 { margin-bottom: var(--vfsg-space-2); color: var(--vfsg-text); }
.trust-card p { color: var(--vfsg-muted); font-size: 0.92rem; }
.trust-notice { margin-top: var(--vfsg-space-8); text-align: center; color: var(--vfsg-muted); font-size: 0.85rem; border-top: 1px solid var(--vfsg-border); padding-top: var(--vfsg-space-6); }

.faq-container { max-width: 760px; margin-inline: auto; }
.faq { margin-top: var(--vfsg-space-8); display: grid; gap: var(--vfsg-space-2); }
.ujhd { border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius); overflow: hidden; background: #fff; }
.uufv { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--vfsg-space-6); background: none; border: 0; cursor: pointer; font-family: var(--vfsg-font-display); font-size: 1rem; font-weight: 600; color: var(--vfsg-text); text-align: left; gap: var(--vfsg-space-4); transition: var(--vfsg-transition); }
.uufv:hover { color: var(--vfsg-accent); }
.uufv i { flex-shrink: 0; transition: transform var(--vfsg-transition); color: var(--vfsg-accent); }
.ujhd.is-open .uufv i { transform: rotate(180deg); }
.ucpa { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 var(--vfsg-space-6) var(--vfsg-space-6); color: var(--vfsg-muted); font-size: 0.95rem; line-height: 1.7; }

.uwdn { background: var(--vfsg-bg); color: var(--vfsg-text); border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); }
.lf-tablist { display: flex; flex-wrap: wrap; gap: 0.5rem; border-bottom: 1px solid var(--vfsg-border); margin-bottom: var(--vfsg-space-6); padding-bottom: var(--vfsg-space-4); }
.uqux { padding: 0.6rem 1.2rem; border: 0; background: none; cursor: pointer; font-family: var(--vfsg-font-display); font-size: 0.9rem; color: var(--vfsg-muted); border-bottom: 2px solid transparent; transition: var(--vfsg-transition); font-weight: 600; }
.uqux.is-active { color: var(--vfsg-accent); border-bottom-color: var(--vfsg-accent); }
.uqux:hover { color: var(--vfsg-accent); }
.utxe { display: none; color: var(--vfsg-text); }
.utxe.is-active { display: block; }
.utxe h3 { margin-bottom: var(--vfsg-space-4); color: var(--vfsg-text); }
.utxe p { color: var(--vfsg-muted); }
.uqdc .uwdn, .ufsr .uwdn { background: rgba(255,255,255,0.95); color: var(--vfsg-text); }

.uoah { background: var(--vfsg-bg); color: var(--vfsg-text); border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); }
.calc-wrapper { max-width: 680px; }
.calc-row { margin-bottom: var(--vfsg-space-6); }
.calc-row label { display: block; font-weight: 600; color: var(--vfsg-text); margin-bottom: 0.5rem; font-size: 0.95rem; }
.calc-row input[type="range"] { width: 100%; margin-top: 0.5rem; accent-color: var(--vfsg-accent); }
.checkbox-label { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { accent-color: var(--vfsg-accent); width: 16px; height: 16px; }
.ujjb { margin-top: var(--vfsg-space-6); padding: var(--vfsg-space-6); background: var(--vfsg-bg-alt); border-radius: var(--vfsg-radius); border-left: 4px solid var(--vfsg-accent); color: var(--vfsg-text); font-weight: 600; font-family: var(--vfsg-font-display); }
.calc-note { font-size: 0.8rem; color: var(--vfsg-muted); margin-top: var(--vfsg-space-4); }
.uqdc .uoah, .ufsr .uoah { background: rgba(255,255,255,0.95); color: var(--vfsg-text); }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--vfsg-space-6); margin-top: var(--vfsg-space-8); }
.bento-item { background: #fff; border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); transition: var(--vfsg-transition); display: flex; flex-direction: column; gap: var(--vfsg-space-4); }
.bento-item:hover { box-shadow: var(--vfsg-shadow-md); transform: translateY(-2px); }
.bento-span-7 { grid-column: span 7; }
.bento-span-5 { grid-column: span 5; }
.bento-span-4 { grid-column: span 4; }
.bento-span-8 { grid-column: span 8; }
.bento-accent { background: var(--vfsg-accent); color: #fff; border-color: var(--vfsg-accent); }
.bento-accent h3, .bento-accent p { color: #fff; }
.bento-icon { font-size: 1.8rem; color: var(--vfsg-accent); }
.bento-accent .bento-icon { color: rgba(255,255,255,0.8); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--vfsg-border); font-size: 0.9rem; }
.data-table thead th { background: var(--vfsg-bg-alt); font-family: var(--vfsg-font-display); font-weight: 600; font-size: 0.85rem; color: var(--vfsg-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.data-table tbody tr:hover { background: var(--vfsg-bg-alt); }
.dark-table { background: rgba(255,255,255,0.06); }
.dark-table th, .dark-table td { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.dark-table thead th { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.dark-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.table-wrap { overflow-x: auto; border-radius: var(--vfsg-radius); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.value-item { text-align: center; padding: var(--vfsg-space-8); }
.value-item i { font-size: 2rem; color: var(--vfsg-accent); margin-bottom: var(--vfsg-space-6); display: block; }
.value-item h3 { margin-bottom: var(--vfsg-space-4); color: #fff; }
.value-item p { color: rgba(255,255,255,0.75); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--vfsg-space-8); margin-top: var(--vfsg-space-8); }
.team-card { background: #fff; border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); text-align: center; transition: var(--vfsg-transition); }
.team-card:hover { box-shadow: var(--vfsg-shadow-md); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--vfsg-font-display); font-weight: 700; font-size: 1.2rem; margin: 0 auto var(--vfsg-space-6); }
.team-role { color: var(--vfsg-accent); font-size: 0.85rem; font-weight: 600; margin-bottom: var(--vfsg-space-4); }
.team-card p { color: var(--vfsg-muted); font-size: 0.92rem; }

.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--vfsg-space-12); align-items: start; }
.contact-form-col h2 { margin-bottom: var(--vfsg-space-8); }
.form-group { margin-bottom: var(--vfsg-space-6); }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--vfsg-text); }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--vfsg-border); border-radius: var(--vfsg-radius-sm); font: inherit; font-size: 0.95rem; transition: var(--vfsg-transition); color: var(--vfsg-text); background: #fff; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--vfsg-accent); box-shadow: 0 0 0 3px rgba(26,79,191,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-checkbox input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--vfsg-accent); flex-shrink: 0; }
.form-checkbox label { font-weight: 400; font-size: 0.88rem; color: var(--vfsg-muted); }
.uake { display: block; color: #c0392b; font-size: 0.82rem; min-height: 1rem; margin-top: 0.25rem; }
.contact-info-panel { background: var(--vfsg-bg-alt); border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); }
.contact-info-panel h2 { margin-bottom: var(--vfsg-space-6); }
.contact-info-item { display: flex; gap: var(--vfsg-space-4); padding: var(--vfsg-space-4) 0; border-bottom: 1px solid var(--vfsg-border); }
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item i { font-size: 1.1rem; color: var(--vfsg-accent); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item div { font-size: 0.9rem; color: var(--vfsg-muted); }
.contact-info-item a { color: var(--vfsg-accent); }
.map-container { border-radius: var(--vfsg-radius-lg); overflow: hidden; border: 1px solid var(--vfsg-border); }
.map-container iframe { display: block; width: 100%; height: 450px; border: 0; }

.page-hero { background: var(--vfsg-bg-alt); padding: var(--vfsg-space-20) 0 var(--vfsg-space-12); border-bottom: 1px solid var(--vfsg-border); }
.page-hero-inner { max-width: 700px; }
.page-title { margin-bottom: var(--vfsg-space-4); }
.page-lead { color: var(--vfsg-muted); font-size: 1.05rem; }

.thank-you-section { padding: var(--vfsg-space-20) 0; min-height: 60vh; display: flex; align-items: center; }
.thank-you-inner { text-align: center; max-width: 560px; margin-inline: auto; }
.thank-you-icon { font-size: 4rem; color: var(--vfsg-accent); margin-bottom: var(--vfsg-space-6); }
.thank-you-inner h1 { margin-bottom: var(--vfsg-space-4); }
.thank-you-inner p { color: var(--vfsg-muted); margin-bottom: var(--vfsg-space-4); }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); justify-content: center; margin-top: var(--vfsg-space-8); }

.error-section { padding: var(--vfsg-space-20) 0; min-height: 60vh; display: flex; align-items: center; }
.error-inner { text-align: center; max-width: 520px; margin-inline: auto; }
.error-code { font-family: var(--vfsg-font-display); font-size: clamp(5rem, 3rem + 8vw, 9rem); font-weight: 800; color: var(--vfsg-accent); line-height: 1; margin-bottom: var(--vfsg-space-4); }
.error-inner h1 { margin-bottom: var(--vfsg-space-4); }
.error-inner p { color: var(--vfsg-muted); margin-bottom: var(--vfsg-space-8); }
.error-actions { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-4); justify-content: center; }

.legal-section { padding: var(--vfsg-space-20) 0; }
.legal-container { max-width: 760px; }
.legal-container h1 { margin-bottom: var(--vfsg-space-4); }
.legal-date { color: var(--vfsg-muted); font-size: 0.88rem; margin-bottom: var(--vfsg-space-8); }
.legal-container h2 { margin-top: var(--vfsg-space-8); margin-bottom: var(--vfsg-space-4); font-size: 1.2rem; }
.legal-container h3 { margin-top: var(--vfsg-space-6); margin-bottom: var(--vfsg-space-2); font-size: 1rem; }
.legal-container p { color: var(--vfsg-muted); margin-bottom: var(--vfsg-space-4); line-height: 1.7; }
.legal-container a { color: var(--vfsg-accent); text-decoration: underline; }
.legal-container code { background: var(--vfsg-bg-alt); padding: 0.1rem 0.4rem; border-radius: 3px; font-family: monospace; font-size: 0.85rem; }

.site-footer { background: #0a1840; color: rgba(255,255,255,0.85); padding: var(--vfsg-space-20) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--vfsg-space-8); padding-bottom: var(--vfsg-space-12); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: var(--vfsg-space-4) 0; }
.footer-brand address { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-brand address a { color: rgba(255,255,255,0.75); }
.footer-brand address a:hover { color: #fff; }
.footer-logo { color: #fff; }
.footer-logo .logo-text { color: #fff; }
.footer-legal-id { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: var(--vfsg-space-4); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: var(--vfsg-space-4); }
.footer-col ul { list-style: none; display: grid; gap: var(--vfsg-space-2); }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: var(--vfsg-transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-disclaimer { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); padding: var(--vfsg-space-4) var(--vfsg-space-4) 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: var(--vfsg-space-4) 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: var(--vfsg-space-4); font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.uvtm { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; background: #fff; border: 1px solid var(--vfsg-border); border-radius: var(--vfsg-radius-lg); box-shadow: var(--vfsg-shadow-lg); padding: var(--vfsg-space-6); transform: translateY(140%); transition: transform 0.4s ease; }
.uvtm.is-visible { transform: none; }
.cookie-banner-inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--vfsg-space-4); justify-content: space-between; }
.cookie-banner-text { font-size: 0.9rem; color: var(--vfsg-muted); flex: 1; min-width: 200px; }
.cookie-banner-text a { color: var(--vfsg-accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: var(--vfsg-space-2); }

.uelr { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.55); }
.uelr.is-visible { display: flex; }
.ushu { background: #fff; border-radius: var(--vfsg-radius-lg); padding: var(--vfsg-space-8); max-width: 480px; width: 90%; box-shadow: var(--vfsg-shadow-lg); color: var(--vfsg-text); }
.ushu h2 { margin-bottom: var(--vfsg-space-4); font-size: 1.2rem; color: var(--vfsg-text); }
.ushu p { color: var(--vfsg-muted); font-size: 0.9rem; margin-bottom: var(--vfsg-space-6); }
.cookie-toggle { display: flex; justify-content: space-between; align-items: center; padding: var(--vfsg-space-4) 0; border-bottom: 1px solid var(--vfsg-border); gap: var(--vfsg-space-4); }
.cookie-toggle h4 { font-size: 0.9rem; color: var(--vfsg-text); margin-bottom: 0.2rem; }
.cookie-toggle p { font-size: 0.82rem; color: var(--vfsg-muted); margin: 0; }
.cookie-modal-actions { display: flex; gap: var(--vfsg-space-2); margin-top: var(--vfsg-space-6); }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: #ccc; border-radius: 999px; transition: var(--vfsg-transition); cursor: pointer; }
.slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--vfsg-transition); }
.switch input:checked + .slider { background: var(--vfsg-accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }

.back-to-top { position: fixed; bottom: 5rem; right: 1.5rem; z-index: 80; width: 44px; height: 44px; border-radius: 50%; background: var(--vfsg-accent); color: #fff; border: 0; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--vfsg-shadow-md); transition: var(--vfsg-transition); }
.back-to-top.is-visible { display: flex; }
.back-to-top:hover { background: var(--vfsg-accent-dark); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .bento-span-7 { grid-column: span 12; }
  .bento-span-5 { grid-column: span 12; }
  .bento-span-4 { grid-column: span 6; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .uwaz { display: flex; }
  .ukkn { position: fixed; inset: var(--vfsg-header-height) 0 auto 0; flex-direction: column; background: #fff; padding: var(--vfsg-space-6); box-shadow: var(--vfsg-shadow-md); transform: translateY(-150%); transition: transform var(--vfsg-transition); align-items: flex-start; gap: var(--vfsg-space-4); z-index: 49; }
  .ukkn.is-open { transform: none; }
  .split-block { grid-template-columns: 1fr; }
  .split-reverse .media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .timeline-h { flex-direction: column; gap: var(--vfsg-space-6); }
  .timeline-h::before { display: none; }
  .tl-node::before { display: none; }
  .hero-badges { display: none; }
  .bento-span-4 { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--vfsg-space-2); text-align: center; }
  .subnav { position: static; }
  .container { width: 90%; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uvtm{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}
.uvtm.is-visible,.cookie-banner--visible,.uvtm.show,.uvtm.active{transform:none !important}
.uvtm a{color:inherit;text-decoration:underline}
.uvtm button{cursor:pointer}
.uelr{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}
.uelr.is-visible,.cookie-modal--visible,.uelr.show,.uelr.active{display:flex !important}
.ushu,.uelr>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uqdc .uyyy,.uqdc .uoah,.uqdc .uwdn,.uqdc .umcv,.ufsr .uyyy,.ufsr .uoah,.ufsr .uwdn,.ufsr .umcv{background:#fff !important;color:#1a1a1a !important}
.uyyy,.uoah{color:#1a1a1a !important}
.uyyy label,.uoah label,.uyyy p,.uoah p,.uyyy .uknv,.uyyy span,.uoah span,.ujjb,.umrp,.uwdn .utxe,.uwdn .utxe *{color:#1a1a1a !important}
.ujjb,.umrp{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uyyy .uvxr{color:#1a1a1a !important}
.uyyy .uvxr.is-sel{color:#fff !important}
.ulxu .uake{display:none}
.ulxu .uake.is-visible{display:block !important;color:#c0392b}
.ulxu .ujqt,.ulxu [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ulxu{color:#1a1a1a}
.uqdc .ulxu,.ufsr .ulxu{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uixe{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uixe img{width:100%;height:100%;object-fit:cover}
.urou,.uylq{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urou img,.uylq img{width:100%;height:100%;object-fit:cover;display:block}
.urou img{opacity:.28}
.uylq img{opacity:.07}
*:has(> .urou),*:has(> .uylq){position:relative}
.udub{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)}
.udub .uvho{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.udub .uvuq{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uuiu{margin:1.4rem auto;max-width:920px}
.uuiu img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uxuk{padding:3rem 0}
.uiuc{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uiuc img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.umcv{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uqea{display:flex;overflow:hidden;gap:0 !important}
.uxpc{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.upfy{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}
.uqnj{left:.5rem}.uzgr{right:.5rem}
.uwdn .utxe{display:none}.uwdn .utxe.is-active{display:block}
.uyyy .uwao{display:block !important}
.uyyy .uike{display:flex;flex-wrap:wrap;gap:.5rem}
.uyyy .uvxr{cursor:pointer}
