/* =========================================================================
   DESIGN SYSTEM — Vortora Uniqueized Theme
   Primary:    #2d4a7a (deep navy)
   Primary-alt:#3b6cb5 (mid blue)
   Accent:     #e8962e (warm amber)
   Ink:        #1b2033 (dark navy)
   Muted:      #6b7a92 (slate blue)
   Line:       #dfe4ed (light blue-gray)
   BG:         #f4f6f9 (cool off-white)
   Font stack: 'Cambria', 'Cochin', Georgia, serif
   Radius:     12px (base), 8px (small), 20px (large)
   Shadow-sm:  0 2px 10px rgba(27,32,51,.05)
   Shadow-md:  0 12px 40px rgba(27,32,51,.09)
   ========================================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:      #2d4a7a;
    --navy-lit:  #3b6cb5;
    --amber:     #e8962e;
    --ink:       #1b2033;
    --slate:     #6b7a92;
    --edge:      #dfe4ed;
    --canvas:    #f4f6f9;
    --white:     #ffffff;
    --rnd:       12px;
    --depth:     0 12px 40px rgba(27,32,51,.09);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cambria', 'Cochin', Georgia, serif;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.75;
    font-size: 16px;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOP NAV ===== */
.vt-nav {
    background: var(--navy);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    letter-spacing: .04em;
    font-size: 14px;
}
.vt-nav__logo {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: .09em;
    color: #fff;
    text-decoration: none;
}

/* ===== PAGE HERO ===== */
.vt-hero {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-lit) 100%);
    color: #fff;
    padding: 58px 20px 48px;
    text-align: center;
}
.vt-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 44px;
    padding: 5px 17px;
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, sans-serif;
}
.vt-hero__title {
    font-size: clamp(25px, 5vw, 46px);
    font-weight: 900;
    line-height: 1.18;
    max-width: 690px;
    margin: 0 auto 13px;
}
.vt-hero__sub {
    font-size: 16px;
    opacity: .80;
    max-width: 490px;
    margin: 0 auto;
}

/* ===== CONTENT WRAP ===== */
.vt-wrap {
    max-width: 850px;
    margin: 0 auto;
    padding: 54px 20px 76px;
}

/* ===== ARTICLE PANEL ===== */
.vt-panel {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--depth);
    padding: 46px 50px;
}
@media (max-width: 600px) {
    .vt-panel { padding: 26px 18px; }
}

/* ===== TYPOGRAPHY ===== */
.vt-panel h2 {
    font-size: clamp(19px, 3vw, 27px);
    color: var(--navy);
    margin: 32px 0 11px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--edge);
}
.vt-panel h2:first-child { margin-top: 0; }

.vt-panel h3 {
    font-size: 17px;
    color: var(--ink);
    margin: 20px 0 8px;
}

.vt-panel p {
    color: var(--slate);
    margin-bottom: 13px;
}

.vt-panel ul,
.vt-panel ol {
    padding-left: 24px;
    color: var(--slate);
    margin-bottom: 13px;
}
.vt-panel li { margin-bottom: 5px; }

.vt-panel strong { color: var(--ink); }

/* ===== FEATURE CARDS ===== */
.vt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 18px;
    margin: 24px 0;
}
.vt-card {
    background: var(--canvas);
    border-radius: var(--rnd);
    padding: 20px 18px;
    border-left: 4px solid var(--navy);
}
.vt-card__ico { font-size: 27px; margin-bottom: 9px; }
.vt-card__heading { font-weight: 800; color: var(--ink); margin-bottom: 5px; font-size: 15px; }
.vt-card__body { color: var(--slate); font-size: 14px; }

/* ===== ACCENT BOX ===== */
.vt-accent {
    background: linear-gradient(135deg, #fff7eb 0%, #fffcf5 100%);
    border: 2px solid var(--amber);
    border-radius: var(--rnd);
    padding: 20px 24px;
    margin: 24px 0;
}
.vt-accent p { color: var(--ink); margin: 0; }

/* ===== TABLE ===== */
.vt-tbl {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.vt-tbl th {
    background: var(--navy);
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
}
.vt-tbl td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--edge);
    color: var(--slate);
}
.vt-tbl tr:nth-child(even) td { background: #f4f6f9; }

/* ===== TAG ===== */
.vt-tag {
    display: inline-block;
    background: var(--amber);
    color: #111;
    font-weight: 800;
    border-radius: 7px;
    padding: 3px 10px;
    font-size: 13px;
}
.vt-tag--ok   { background: #22c55e; color: #fff; }
.vt-tag--no   { background: #ef4444; color: #fff; }

/* ===== PROCESS STEPS ===== */
.vt-process { counter-reset: procstep; margin: 20px 0; }
.vt-process__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.vt-process__circle {
    counter-increment: procstep;
    flex-shrink: 0;
    width: 42px; height: 42px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 17px;
}
.vt-process__circle::before { content: counter(procstep); }
.vt-process__info { padding-top: 7px; }
.vt-process__name { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.vt-process__desc { color: var(--slate); font-size: 15px; }

/* ===== COOKIE BAR ===== */
.vt-cookie {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(27,32,51,.95);
    color: #fff;
    z-index: 999;
    padding: 16px 22px;
    backdrop-filter: blur(8px);
}
.vt-cookie__inner {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.vt-cookie__msg { font-size: 14px; color: #c5cdd8; flex: 1; min-width: 200px; }
.vt-cookie__msg a { color: var(--amber); }
.vt-cookie__btns { display: flex; gap: 10px; flex-shrink: 0; }
.vt-cookie__yes,
.vt-cookie__no {
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: opacity .2s;
}
.vt-cookie__yes { background: var(--navy); color: #fff; }
.vt-cookie__no  { background: transparent; color: #8a95a4; border: 1px solid #3a4458; }
.vt-cookie__yes:hover, .vt-cookie__no:hover { opacity: .85; }

/* ===== SITE FOOTER ===== */
.vt-foot {
    background: #1b2033;
    color: #8a95a4;
    padding: 58px 20px 30px;
    position: relative;
    overflow: hidden;
}
.vt-foot .vt-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.vt-foot__cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 38px;
}
@media (max-width: 900px) {
    .vt-foot__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .vt-foot__cols { grid-template-columns: 1fr; gap: 26px; }
}
.vt-foot__brand h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 13px;
    letter-spacing: .07em;
}
.vt-foot__brand p { font-size: 14px; line-height: 1.7; }
.vt-foot__col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: system-ui, sans-serif;
}
.vt-foot__menu, .vt-foot__law { display: flex; flex-direction: column; gap: 10px; }
.vt-foot__menu a, .vt-foot__law a {
    color: #8a95a4;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.vt-foot__menu a:hover, .vt-foot__law a:hover { color: #fff; }
.vt-foot__addr p { font-size: 14px; margin-bottom: 7px; }
.vt-foot__rule { border: none; border-top: 1px solid #2a3346; margin-bottom: 22px; }
.vt-foot__end { text-align: center; }
.vt-foot__copy { font-size: 13px; }

/* Glow decorations */
.vt-foot__orb-a {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,74,122,.22) 0%, transparent 70%);
    top: -100px; right: -80px;
    pointer-events: none;
}
.vt-foot__orb-b {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,150,46,.10) 0%, transparent 70%);
    bottom: -60px; left: 12%;
    pointer-events: none;
}
