/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', sans-serif; color: #1a1a2e; background: #f9f9fb; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --v-dark: #0a1628;
  --v-blue: #132744;
  --v-yellow: #ffd000;
  --v-yellow-soft: #fff3c4;
  --v-white: #ffffff;
  --v-gray: #f4f4f8;
  --v-text: #1a1a2e;
  --v-text-soft: #5a5a7a;
  --v-line: #e0e0ea;
  --v-radius: 14px;
  --v-shadow: 0 4px 20px rgba(10,22,40,0.08);
  --v-font-head: 'Playfair Display', Georgia, serif;
  --v-font-body: 'Source Sans 3', sans-serif;
}

/* TOPBAR */
.v-topbar { background: var(--v-dark); color: rgba(255,255,255,0.6); font-size: 0.75rem; padding: 6px 0; letter-spacing: 0.04em; }
.v-topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.v-topbar a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.v-topbar a:hover { color: #fff; }

/* HEADER */
.v-header { background: var(--v-white); border-bottom: 3px solid var(--v-dark); position: sticky; top: 0; z-index: 100; }
.v-header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.v-logo { font-family: var(--v-font-head); font-size: 2.2rem; font-weight: 700; color: var(--v-dark); letter-spacing: -0.02em; }
.v-logo span { color: var(--v-yellow); }
.v-nav { display: flex; gap: 22px; align-items: center; }
.v-nav a { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #333; transition: color 0.2s; position: relative; }
.v-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--v-yellow); transition: width 0.3s; }
.v-nav a:hover::after { width: 100%; }
.v-nav a:hover { color: var(--v-dark); }
.v-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.v-burger span { width: 24px; height: 2px; background: var(--v-dark); transition: all 0.3s; display: block; }

/* HERO */
.v-hero { background: linear-gradient(160deg, var(--v-dark) 0%, var(--v-blue) 100%); padding: 70px 20px 60px; color: #fff; position: relative; overflow: hidden; }
.v-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: var(--v-yellow); opacity: 0.06; }
.v-hero::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 250px; height: 250px; border-radius: 50%; background: var(--v-yellow); opacity: 0.04; }
.v-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.v-hero-tag { display: inline-block; background: var(--v-yellow); color: var(--v-dark); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 16px; margin-bottom: 20px; }
.v-hero h1 { font-family: var(--v-font-head); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.2; margin-bottom: 20px; }
.v-hero h1 em { color: var(--v-yellow); font-style: normal; }
.v-hero-lead { font-size: 1.08rem; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 24px; line-height: 1.8; }
.v-hero-meta { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.v-hero-meta strong { color: rgba(255,255,255,0.8); }

/* TIMELINE SECTION */
.v-timeline-section { max-width: 1100px; margin: 0 auto; padding: 60px 20px; position: relative; }
.v-timeline-heading { text-align: center; margin-bottom: 50px; }
.v-timeline-heading .v-label { display: inline-block; background: var(--v-yellow); color: var(--v-dark); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; margin-bottom: 12px; }
.v-timeline-heading h2 { font-family: var(--v-font-head); font-size: 2rem; color: var(--v-dark); margin-bottom: 8px; }
.v-timeline-heading p { color: var(--v-text-soft); font-size: 0.95rem; }

.v-timeline { position: relative; padding: 20px 0; }
.v-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--v-yellow), var(--v-dark)); transform: translateX(-50%); border-radius: 3px; }

.v-tl-item { position: relative; width: 50%; padding: 0 40px 50px; }
.v-tl-item:nth-child(odd) { left: 0; text-align: right; padding-right: 50px; padding-left: 20px; }
.v-tl-item:nth-child(even) { left: 50%; text-align: left; padding-left: 50px; padding-right: 20px; }

.v-tl-dot { position: absolute; top: 8px; width: 18px; height: 18px; border-radius: 50%; background: var(--v-yellow); border: 3px solid var(--v-dark); z-index: 2; }
.v-tl-item:nth-child(odd) .v-tl-dot { right: -9px; }
.v-tl-item:nth-child(even) .v-tl-dot { left: -9px; }

.v-tl-card { background: var(--v-white); border-radius: var(--v-radius); padding: 26px 24px; box-shadow: var(--v-shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.v-tl-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(10,22,40,0.14); }
.v-tl-num { font-family: var(--v-font-head); font-size: 2.8rem; font-weight: 700; color: var(--v-yellow-soft); line-height: 1; margin-bottom: 4px; }
.v-tl-card h3 { font-family: var(--v-font-head); font-size: 1.15rem; color: var(--v-dark); margin-bottom: 10px; }
.v-tl-card p { font-size: 0.9rem; color: var(--v-text-soft); line-height: 1.65; text-align: left; }
.v-tl-tag { display: inline-block; background: var(--v-yellow-soft); color: var(--v-dark); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-top: 12px; }

/* HIGHLIGHT BOX */
.v-highlight { background: var(--v-dark); color: #fff; border-radius: var(--v-radius); padding: 36px 32px; margin: 40px auto; max-width: 800px; position: relative; overflow: hidden; }
.v-highlight::after { content: '⚡'; position: absolute; right: 24px; top: 16px; font-size: 5rem; opacity: 0.06; }
.v-highlight h3 { font-family: var(--v-font-head); font-size: 1.3rem; margin-bottom: 12px; color: var(--v-yellow); }
.v-highlight p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.v-highlight ul { margin: 14px 0 0 20px; }
.v-highlight ul li { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 6px; }

/* IMAGE BLOCK */
.v-img-block { max-width: 800px; margin: 40px auto; border-radius: var(--v-radius); overflow: hidden; box-shadow: var(--v-shadow); }
.v-img-block img { width: 100%; height: 320px; object-fit: cover; }
.v-img-block figcaption { background: var(--v-white); padding: 10px 18px; font-size: 0.78rem; color: var(--v-text-soft); font-style: italic; }

/* QUOTE */
.v-quote-block { max-width: 700px; margin: 40px auto; text-align: center; padding: 30px 20px; background: var(--v-yellow-soft); border-radius: var(--v-radius); position: relative; }
.v-quote-block::before { content: open-quote; font-family: var(--v-font-head); font-size: 5rem; color: var(--v-yellow); position: absolute; top: -10px; left: 24px; line-height: 1; }
.v-quote-block blockquote { font-family: var(--v-font-head); font-size: 1.15rem; color: var(--v-dark); font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.v-quote-block cite { font-size: 0.78rem; color: var(--v-text-soft); font-style: normal; }

/* INTRO / PROSE */
.v-prose { max-width: 800px; margin: 0 auto 30px; }
.v-prose h2 { font-family: var(--v-font-head); font-size: 1.6rem; color: var(--v-dark); margin: 36px 0 14px; padding-left: 16px; border-left: 4px solid var(--v-yellow); }
.v-prose p { color: var(--v-text); font-size: 1rem; margin-bottom: 16px; }

/* REC CARDS */
.v-rec-section { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.v-rec-section .v-label { display: inline-block; background: var(--v-yellow); color: var(--v-dark); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; margin-bottom: 12px; }
.v-rec-section h2 { font-family: var(--v-font-head); font-size: 1.7rem; color: var(--v-dark); margin-bottom: 6px; }
.v-rec-section > p { color: var(--v-text-soft); font-size: 0.92rem; margin-bottom: 24px; }
.v-rec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.v-rec-card { background: var(--v-white); border-radius: var(--v-radius); padding: 24px; box-shadow: var(--v-shadow); transition: transform 0.25s; border-top: 3px solid var(--v-yellow); }
.v-rec-card:hover { transform: translateY(-4px); }
.v-rec-card h4 { font-family: var(--v-font-head); font-size: 1.05rem; color: var(--v-dark); margin-bottom: 8px; }
.v-rec-card p { font-size: 0.88rem; color: var(--v-text-soft); line-height: 1.6; }

/* SIDEBAR ARTICLES */
.v-sidebar-section { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.v-sidebar-section h2 { font-family: var(--v-font-head); font-size: 1.5rem; color: var(--v-dark); margin-bottom: 20px; text-align: center; }
.v-sidebar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-sidebar-card { background: var(--v-white); border-radius: var(--v-radius); box-shadow: var(--v-shadow); overflow: hidden; transition: transform 0.25s; }
.v-sidebar-card:hover { transform: translateY(-4px); }
.v-sidebar-card-body { padding: 20px; }
.v-sidebar-card span { font-size: 0.7rem; color: var(--v-yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.v-sidebar-card h4 { font-family: var(--v-font-head); font-size: 1rem; color: var(--v-dark); margin: 6px 0 8px; line-height: 1.4; }
.v-sidebar-card p { font-size: 0.82rem; color: var(--v-text-soft); line-height: 1.5; }

/* CONCLUSION */
.v-conclusion { max-width: 800px; margin: 40px auto; background: var(--v-gray); border-radius: var(--v-radius); padding: 36px 32px; border-left: 5px solid var(--v-yellow); }
.v-conclusion h3 { font-family: var(--v-font-head); font-size: 1.35rem; color: var(--v-dark); margin-bottom: 14px; }
.v-conclusion p { color: var(--v-text-soft); font-size: 0.95rem; margin-bottom: 10px; }

/* NEWSLETTER */
.v-newsletter { max-width: 600px; margin: 40px auto; background: linear-gradient(135deg, var(--v-dark), var(--v-blue)); border-radius: var(--v-radius); padding: 36px 30px; color: #fff; text-align: center; }
.v-newsletter h3 { font-family: var(--v-font-head); font-size: 1.3rem; margin-bottom: 8px; }
.v-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.v-nl-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.v-nl-form input[type="email"] { flex: 1; padding: 11px 16px; border-radius: 50px; border: none; font-family: var(--v-font-body); font-size: 0.88rem; outline: none; }
.v-nl-form button { padding: 11px 22px; background: var(--v-yellow); color: var(--v-dark); font-weight: 700; font-size: 0.85rem; border: none; border-radius: 50px; cursor: pointer; transition: opacity 0.2s; white-space: nowrap; }
.v-nl-form button:hover { opacity: 0.85; }

/* FOOTER */
.v-footer { background: var(--v-dark); color: rgba(255,255,255,0.6); padding: 48px 20px 20px; margin-top: 60px; }
.v-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.v-footer h4 { color: #fff; font-family: var(--v-font-head); font-size: 1rem; margin-bottom: 14px; }
.v-footer p { font-size: 0.85rem; line-height: 1.7; }
.v-footer ul { list-style: none; }
.v-footer li { margin-bottom: 8px; }
.v-footer a { color: rgba(255,255,255,0.5); transition: color 0.2s; font-size: 0.85rem; }
.v-footer a:hover { color: var(--v-yellow); }
.v-footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.v-footer-bottom p { margin-bottom: 6px; }
.v-footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.3); max-width: 700px; margin: 10px auto 0; line-height: 1.5; }

/* COOKIE BANNER */
.v-cookie-wrap { position: fixed; bottom: 0; right: 0; left: 0; z-index: 999; pointer-events: none; }
#v-cookie-close { display: none; }
#v-cookie-close:checked ~ .v-cookie-wrap { display: none; }
.v-cookie-banner { background: var(--v-dark); color: #fff; padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; pointer-events: auto; font-size: 0.85rem; }
.v-cookie-banner p { max-width: 500px; }
.v-cookie-banner a { color: var(--v-yellow); text-decoration: underline; }
.v-cookie-btns { display: flex; gap: 10px; }
.v-cookie-btns label, .v-cookie-btns a { padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; min-height: 44px; line-height: 28px; text-align: center; }
.v-cookie-accept { background: var(--v-yellow); color: var(--v-dark); }
.v-cookie-decline { background: rgba(255,255,255,0.15); color: #fff; }

/* ARTICLE PAGE */
.v-article-page { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.v-article-page .v-article-tag { display: inline-block; background: var(--v-yellow); color: var(--v-dark); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; margin-bottom: 14px; }
.v-article-page h1 { font-family: var(--v-font-head); font-size: 2.2rem; color: var(--v-dark); line-height: 1.25; margin-bottom: 14px; }
.v-article-page .v-meta { font-size: 0.82rem; color: var(--v-text-soft); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--v-line); }
.v-article-page h2 { font-family: var(--v-font-head); font-size: 1.45rem; color: var(--v-dark); margin: 32px 0 12px; border-left: 4px solid var(--v-yellow); padding-left: 14px; }
.v-article-page p { color: var(--v-text); font-size: 1rem; margin-bottom: 16px; line-height: 1.75; }
.v-article-page blockquote { margin: 24px 0; padding: 18px 22px; background: var(--v-yellow-soft); border-left: 4px solid var(--v-yellow); font-style: italic; color: var(--v-dark); font-size: 1rem; }
.v-article-page .v-art-img { margin: 28px 0; border-radius: var(--v-radius); overflow: hidden; box-shadow: var(--v-shadow); }
.v-article-page .v-art-img img { width: 100%; height: 300px; object-fit: cover; }
.v-article-page .v-art-highlight { background: var(--v-dark); color: #fff; padding: 24px; border-radius: var(--v-radius); margin: 28px 0; }
.v-article-page .v-art-highlight h3 { color: var(--v-yellow); font-family: var(--v-font-head); margin-bottom: 8px; }
.v-article-page .v-art-highlight p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* SUCCESS PAGE */
.v-success-page { text-align: center; padding: 100px 20px; max-width: 600px; margin: 0 auto; }
.v-success-page h1 { font-family: var(--v-font-head); font-size: 2.4rem; color: var(--v-dark); margin-bottom: 16px; }
.v-success-page p { color: var(--v-text-soft); font-size: 1.05rem; margin-bottom: 28px; }
.v-success-page .v-btn { display: inline-block; background: var(--v-yellow); color: var(--v-dark); font-weight: 700; padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; transition: opacity 0.2s; }
.v-success-page .v-btn:hover { opacity: 0.85; }

/* LEGAL PAGES */
.v-legal-page { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.v-legal-page h1 { font-family: var(--v-font-head); font-size: 2rem; color: var(--v-dark); margin-bottom: 24px; }
.v-legal-page h2 { font-family: var(--v-font-head); font-size: 1.2rem; color: var(--v-dark); margin: 28px 0 10px; }
.v-legal-page p { color: var(--v-text); font-size: 0.95rem; margin-bottom: 12px; }
.v-legal-page .v-legal-date { font-size: 0.82rem; color: var(--v-text-soft); margin-bottom: 24px; }

/* 404 PAGE */
.v-404-page { text-align: center; padding: 80px 20px; max-width: 700px; margin: 0 auto; }
.v-404-page h1 { font-family: var(--v-font-head); font-size: 6rem; color: var(--v-yellow); margin-bottom: 10px; }
.v-404-page h2 { font-family: var(--v-font-head); font-size: 1.6rem; color: var(--v-dark); margin-bottom: 16px; }
.v-404-page p { color: var(--v-text-soft); margin-bottom: 28px; }
.v-404-links { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.v-404-links a { color: var(--v-dark); font-weight: 600; padding: 10px 24px; border: 2px solid var(--v-yellow); border-radius: 50px; transition: all 0.2s; }
.v-404-links a:hover { background: var(--v-yellow); }

/* ANIMATIONS */
@keyframes v-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.v-anim { animation: v-fade-up 0.6s ease forwards; }
.v-anim-d1 { animation: v-fade-up 0.6s 0.1s ease both; }
.v-anim-d2 { animation: v-fade-up 0.6s 0.2s ease both; }
.v-anim-d3 { animation: v-fade-up 0.6s 0.3s ease both; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .v-nav { display: none; }
  .v-nav.v-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--v-white); padding: 20px; border-bottom: 3px solid var(--v-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 100; }
  .v-burger { display: flex; }
  .v-timeline::before { left: 20px; }
  .v-tl-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px !important; padding-right: 20px !important; }
  .v-tl-item .v-tl-dot { left: 11px !important; right: auto !important; }
  .v-rec-grid { grid-template-columns: 1fr; }
  .v-sidebar-grid { grid-template-columns: 1fr; }
  .v-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .v-nl-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .v-hero h1 { font-size: 1.6rem; }
  .v-topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .v-cookie-banner { flex-direction: column; text-align: center; }
}
