/* vpcoz.com — shared stylesheet */
:root {
  --orange: #E8650A;
  --orange-dk: #D4530A;
  --orange-lt: #FFF5EB;
  --orange-bd: #FCCF99;
  --text: #111827;
  --text-m: #6B7280;
  --text-l: #9CA3AF;
  --bg: #fff;
  --bg-alt: #F9FAFB;
  --bg-dk: #111827;
  --border: #E5E7EB;
  --r: 8px;
  --r-lg: 16px;
  --sh: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --sh-md: 0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.05);
  --sh-lg: 0 10px 15px rgba(0,0,0,.07),0 4px 6px rgba(0,0,0,.05);
  --ease: .2s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }

/* ── ACCESSIBILITY ───────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.skip-link { position: absolute; top: -48px; left: 8px; background: var(--orange); color: #fff; padding: 12px 20px; border-radius: var(--r); font-weight: 700; font-size: 14px; text-decoration: none; z-index: 2000; transition: top .15s ease; }
.skip-link:focus { top: 8px; }
main:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
a { color: var(--orange); }
a:hover { color: var(--orange-dk); }

/* ── NAV ─────────────────────────── */
.nav { position: sticky; top: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.nav-logo { font-size: 20px; font-weight: 800; color: var(--orange); text-decoration: none; letter-spacing: -.5px; flex-shrink: 0; }
.nav-logo:hover { color: var(--orange-dk); }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; flex: 1; justify-content: center; }
.nav-links a { text-decoration: none; color: var(--text-m); font-weight: 500; font-size: 14px; padding: 6px 12px; border-radius: var(--r); transition: color var(--ease), background var(--ease); }
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-links a.active { color: var(--orange); font-weight: 600; }
.nav-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; }

/* ── BUTTONS ─────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--r); font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all var(--ease); min-height: 44px; white-space: nowrap; line-height: 1; font-family: inherit; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--orange); border-color: #fff; }
.btn-white:hover { background: var(--orange-lt); color: var(--orange-dk); border-color: var(--orange-lt); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 14px; min-height: 38px; }
.btn-lg { padding: 17px 40px; font-size: 18px; }

/* ── HERO ────────────────────────── */
.hero { background: linear-gradient(150deg,#FFF7ED 0%,#fff 55%,#FFF9F5 100%); padding: 96px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle,rgba(249,115,22,.1) 0%,transparent 65%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle,rgba(249,115,22,.07) 0%,transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-lt); border: 1px solid var(--orange-bd); color: var(--orange-dk); padding: 6px 16px; border-radius: 9999px; font-size: 12px; font-weight: 700; margin-bottom: 28px; text-transform: uppercase; letter-spacing: .07em; }
.hero h1 { font-size: clamp(32px,5vw,64px); font-weight: 800; max-width: 780px; margin: 0 auto 24px; line-height: 1.1; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: clamp(16px,2vw,19px); color: var(--text-m); max-width: 580px; margin: 0 auto 40px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 48px; color: var(--text-m); font-size: 14px; }
.hero-stars { color: var(--orange); font-size: 17px; letter-spacing: 1px; }

/* ── SECTIONS ────────────────────── */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(24px,3.5vw,42px); font-weight: 800; margin-bottom: 16px; line-height: 1.15; letter-spacing: -.02em; }
.section-sub { color: var(--text-m); font-size: 17px; text-wrap: pretty; }
.section-hd { margin-bottom: 56px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; max-width: 560px; }

/* ── ADVANTAGE CARDS ─────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.adv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh); transition: box-shadow var(--ease),transform var(--ease); }
.adv-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.adv-icon { width: 52px; height: 52px; background: var(--orange-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.adv-card p { color: var(--text-m); font-size: 15px; line-height: 1.65; }

/* ── STEPS ───────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 28px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh); }
.step-num { width: 52px; height: 52px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(249,115,22,.3); }
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-m); font-size: 15px; line-height: 1.65; }

/* ── INFO LAYOUT ─────────────────── */
.info-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.info-layout.rev { direction: rtl; }
.info-layout.rev > * { direction: ltr; }
.info-visual { background: linear-gradient(135deg,var(--orange-lt),#fff0e5); border: 1px solid var(--orange-bd); border-radius: var(--r-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.info-text h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.info-text p { color: var(--text-m); font-size: 17px; line-height: 1.75; }

/* ── FAQ ─────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 8px; overflow: hidden; }
.faq-btn { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text); font-family: inherit; transition: background var(--ease); }
.faq-btn:hover { background: var(--bg-alt); }
.faq-item.open .faq-btn { background: var(--bg-alt); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--orange-lt); border: 1px solid var(--orange-bd); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--orange); font-weight: 300; line-height: 1; transition: transform .3s ease,background var(--ease); user-select: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; border-color: var(--orange); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--text-m); font-size: 15px; line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-ans { max-height: 300px; padding: 2px 24px 22px; }

/* ── REVIEWS ─────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh); transition: box-shadow var(--ease),transform var(--ease); }
.review-card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.review-stars { color: var(--orange); font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { color: var(--text); font-size: 15px; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.review-author { font-weight: 700; font-size: 14px; }
.review-date { color: var(--text-l); font-size: 13px; margin-top: 2px; }

/* ── CTA BLOCK ───────────────────── */
.cta-block { background: linear-gradient(135deg,var(--orange) 0%,var(--orange-dk) 100%); color: #fff; padding: 80px 24px; text-align: center; }
.cta-block h2 { font-size: clamp(24px,4vw,48px); font-weight: 800; margin-bottom: 14px; }
.cta-block p { font-size: 18px; opacity: .9; margin-bottom: 40px; }

/* ── BLOG ────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); transition: box-shadow var(--ease),transform var(--ease); cursor: pointer; }
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.blog-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.blog-thumb { height: 168px; display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 22px 24px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--orange); margin-bottom: 8px; display: block; }
.blog-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; color: var(--text); }
.blog-card p { color: var(--text-m); font-size: 14px; line-height: 1.6; }

/* ── CONTACT ─────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.c-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.c-info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--orange-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.c-info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.c-info-item p, .c-info-item a { color: var(--text-m); font-size: 14px; text-decoration: none; }
.form-g { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-ctrl { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--r); font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg); transition: border-color var(--ease),box-shadow var(--ease); outline: none; }
.form-ctrl:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
textarea.form-ctrl { min-height: 130px; resize: vertical; }
.map-embed { height: 260px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 40px; box-shadow: var(--sh); }
.map-embed iframe { display: block; width: 100%; height: 100%; }
.map-directions { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; }
.map-directions:hover { color: var(--orange-dk); }
.form-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; padding: 14px 18px; border-radius: var(--r); font-weight: 600; font-size: 14px; margin-top: 16px; display: none; }

/* ── MODAL ───────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(17,24,39,.55); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 1000; }
.modal-box { background: #fff; border-radius: var(--r-lg); padding: 40px 32px; max-width: 380px; width: 100%; text-align: center; position: relative; box-shadow: var(--sh-lg); animation: modal-pop .22s ease; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border: none; background: none; font-size: 22px; line-height: 1; color: var(--text-l); cursor: pointer; border-radius: 50%; }
.modal-close:hover { color: var(--text); background: var(--bg-alt); }
.modal-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-lt); color: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.modal-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal-box p { color: var(--text-m); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
@keyframes modal-pop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* ── ARTICLE MODAL ───────────────── */
.article-modal-box { max-width: 640px; padding: 0; text-align: left; max-height: 85vh; overflow-y: auto; }
.article-modal-box .modal-close { background: rgba(255,255,255,.9); box-shadow: var(--sh); z-index: 2; }
.article-hero-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.article-modal-body { padding: 28px 32px 36px; }
.article-modal-body .blog-tag { margin-bottom: 10px; }
.article-modal-body h2 { font-size: 24px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; color: var(--text); }
.article-modal-body p { color: var(--text-m); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.article-modal-body p:last-child { margin-bottom: 0; font-size: 13px; color: var(--text-l); font-style: italic; }
@media (max-width: 560px) { .article-hero-img { height: 180px; } .article-modal-body { padding: 22px 20px 28px; } }

/* ── QUIZ ────────────────────────── */
.quiz-wrap { max-width: 600px; margin: 0 auto; }
.quiz-prog-text { font-size: 13px; color: var(--text-m); margin-bottom: 8px; }
.quiz-prog-bg { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 36px; }
.quiz-prog-bar { height: 100%; background: var(--orange); border-radius: 3px; transition: width .4s ease; }
.quiz-q-text { font-size: 20px; font-weight: 700; margin-bottom: 24px; line-height: 1.35; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt { padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--r); cursor: pointer; display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; transition: all var(--ease); background: #fff; font-family: inherit; text-align: left; width: 100%; }
.quiz-opt:hover { border-color: var(--orange); background: var(--orange-lt); }
.quiz-opt.sel { border-color: var(--orange); background: var(--orange-lt); color: var(--orange-dk); }
.quiz-key { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--bg-alt); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; transition: all var(--ease); }
.quiz-opt.sel .quiz-key { background: var(--orange); border-color: var(--orange); color: #fff; }
.quiz-nav { margin-top: 28px; display: flex; justify-content: flex-end; }
.quiz-result { text-align: center; padding: 48px 32px; background: var(--orange-lt); border: 1px solid var(--orange-bd); border-radius: var(--r-lg); }
.quiz-result-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 36px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.quiz-result h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.quiz-result p { color: var(--text-m); font-size: 17px; margin-bottom: 28px; }

/* ── PAGE HERO ───────────────────── */
.page-hero { background: linear-gradient(150deg,var(--orange-lt) 0%,#fff 70%); padding: 64px 24px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px,4vw,52px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.page-hero p { color: var(--text-m); font-size: 18px; max-width: 560px; }

/* ── FOOTER ──────────────────────── */
.footer { background: var(--bg-dk); color: #fff; padding: 64px 24px 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-size: 20px; font-weight: 800; color: var(--orange); text-decoration: none; display: block; margin-bottom: 14px; letter-spacing: -.5px; }
.footer-logo:hover { color: var(--orange-dk); }
.footer-desc { color: #9CA3AF; font-size: 14px; line-height: 1.75; }
.footer-col-ttl { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: #9CA3AF; margin-bottom: 16px; display: block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #D1D5DB; text-decoration: none; font-size: 14px; transition: color var(--ease); }
.footer-links a:hover { color: var(--orange); }
.footer-divider { border: none; border-top: 1px solid #1F2937; }
.footer-bottom { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 13px; color: #6B7280; }
.footer-bottom a { color: #9CA3AF; text-decoration: none; transition: color var(--ease); }
.footer-bottom a:hover { color: var(--orange); }

/* ── COOKIE ──────────────────────── */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; background: #1F2937; border-top: 2px solid var(--orange); color: #fff; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; z-index: 1000; box-shadow: 0 -4px 24px rgba(0,0,0,.2); }
.cookie-txt { font-size: 14px; color: #D1D5DB; flex: 1; min-width: 200px; line-height: 1.55; }
.cookie-txt a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ca { background: var(--orange); color: #fff; padding: 10px 22px; border-radius: var(--r); font-weight: 700; font-size: 14px; cursor: pointer; border: none; font-family: inherit; transition: background var(--ease); }
.btn-ca:hover { background: var(--orange-dk); }
.btn-cd { background: transparent; color: #9CA3AF; padding: 10px 22px; border-radius: var(--r); font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid #374151; font-family: inherit; transition: all var(--ease); }
.btn-cd:hover { color: #fff; border-color: #6B7280; }

/* ── 404 ─────────────────────────── */
.err-pg { min-height: 72vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.err-code { font-size: 120px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 12px; letter-spacing: -.04em; }
.err-title { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.err-text { color: var(--text-m); font-size: 17px; max-width: 420px; margin: 0 auto 36px; }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-layout { grid-template-columns: 1fr; gap: 36px; }
  .info-layout.rev { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 12px 24px 20px; border-bottom: 1px solid var(--border); gap: 2px; box-shadow: var(--sh-lg); z-index: 99; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .section { padding: 56px 24px; }
  .hero { padding: 64px 24px 56px; }
  .cta-block { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 48px 24px 0; }
  .cookie { padding: 16px 20px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .adv-grid, .steps-grid, .blog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
