/* vbspl.css — Vityaz Business Solutions */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary:       #0ca2e0;
    --primary-dark:  #0084bb;
    --primary-light: #4db8e8;
    --primary-pale:  #e8f5fc;
    --primary-grad:  #0ca2e0;   /* solid — classic corporate, no gradient */

    --dark:       #262b2e;
    --dark-mid:   #1b1d1e;
    --dark-light: #38393a;

    /* Legacy aliases so HTML files don't break */
    --navy:       #262b2e;
    --navy-mid:   #1b1d1e;
    --navy-light: #38393a;
    --gold:       #0ca2e0;
    --gold-light: #4db8e8;
    --gold-pale:  #e8f5fc;

    --white:      #ffffff;
    --off-white:  #f4f5f5;
    --text-dark:  #262b2e;
    --text-mid:   #555a5c;
    --text-light: #8a8e90;
    --border:     #dde0e1;
    --shadow:     0 1px 6px rgba(0,0,0,.08);
    --shadow-lg:  0 3px 16px rgba(0,0,0,.10);
    --radius:     4px;
    --radius-lg:  6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-mid);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .3s ease;
}
nav.scrolled {
    background: var(--dark);
    padding: 13px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 68px;
    width: auto;
    display: block;
    background: var(--white);
    border-radius: 4px;
    padding: 4px 8px;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width .22s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    font-weight: 600;
    transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary-light); }
.mobile-close {
    position: absolute;
    top: 28px; right: 32px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ── BUTTONS ── */
.btn-gold,
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s;
    display: inline-block;
}
.btn-gold:hover,
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .3px;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: border-color .2s, color .2s;
    display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.btn-navy,
.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    white-space: nowrap;
    transition: background .2s;
    display: inline-block;
}
.btn-navy:hover,
.btn-dark:hover { background: var(--dark-light); }

/* ── SHARED SECTION STYLES ── */
section { padding: 88px 0; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-head.center .section-eyebrow { display: flex; justify-content: center; }

/* Background helpers */
.bg-dark { background: var(--dark); }
.bg-off  { background: var(--off-white); }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
    background: var(--dark);
    padding: 140px 0 72px;
    position: relative;
}
.page-banner::before { display: none; }
.page-banner-glow    { display: none; }
.page-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.16;
    margin-bottom: 16px;
    max-width: 680px;
}
.page-banner h1 em {
    font-style: italic;
    color: var(--primary-light);
    background: none;
    -webkit-text-fill-color: var(--primary-light);
    -webkit-background-clip: unset;
    background-clip: unset;
}
.page-banner p {
    font-size: 16px;
    color: rgba(255,255,255,.58);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--dark);
    padding: 64px 0;
}
.cta-band::before { display: none; }
.cta-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-band-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.24;
}
.cta-band-copy p { font-size: 15px; color: rgba(255,255,255,.6); }
.cta-band .btn-navy,
.cta-band .btn-dark {
    background: var(--primary);
    color: var(--white);
}
.cta-band .btn-navy:hover,
.cta-band .btn-dark:hover { background: var(--primary-dark); }

/* ── FOOTER ── */
footer {
    background: var(--dark-mid);
    padding: 60px 0 28px;
}
.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 24px;
}
.footer-brand > p {
    font-size: 13px;
    color: rgba(255,255,255,.38);
    line-height: 1.8;
    margin-top: 14px;
    max-width: 280px;
}
.footer-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-contact a,
.footer-contact span {
    font-size: 12.5px;
    color: rgba(255,255,255,.32);
    text-decoration: none;
    transition: color .2s;
    line-height: 1.6;
}
.footer-contact a:hover { color: rgba(255,255,255,.7); }
.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-col ul li a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255,255,255,.38);
    transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-links { display: flex; gap: 22px; }
.footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: rgba(255,255,255,.22);
    transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

/* ── REVEAL — disabled, elements show immediately ── */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.in { opacity: 1; transform: none; }
.d1, .d2, .d3, .d4 { transition-delay: 0s; }

/* ── HERO CLEANUP ── */
.hero-glow, .hero-glow2, .hero-grid, .hero-scroll-hint { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    section     { padding: 60px 0; }
    .container  { padding: 0 20px; }
    .page-banner { padding: 116px 0 52px; }
    .page-banner-inner { padding: 0 20px; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
