/* ===== VELAKAST.NET — MAIN STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --blue: #1a5fa8;
  --blue-dark: #0d3f75;
  --blue-light: #e8f1fb;
  --accent: #e8a020;
  --text: #1c2332;
  --text-muted: #5a6477;
  --bg: #f5f8fc;
  --white: #ffffff;
  --border: #d0dcea;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(26,95,168,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Serif', serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

/* ===== HEADER ===== */
header {
  background: var(--blue-dark);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 6px;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

nav a:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
  padding: 64px 24px 56px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero-text { flex: 1; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-img {
  flex-shrink: 0;
  width: 220px;
}

.hero-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.30);
  display: block;
}

/* CTA button */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(232,160,32,0.38);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  letter-spacing: 0.01em;
}

.btn-cta:hover {
  background: #d08f15;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.45);
}

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
}

.btn-cta-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* ===== MAIN LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 44px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--blue-light);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* ===== INFO CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  box-shadow: var(--shadow);
}

.info-card .ic-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 6px;
}

.info-card .ic-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.data-table th {
  background: var(--blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  letter-spacing: 0.03em;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--blue-light); }

/* ===== WARNING BOX ===== */
.warning-box {
  background: #fff8e8;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.warning-box strong {
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 4px;
  color: #a06010;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--blue-dark);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-item.open .faq-a { display: block; }

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  text-align: center;
}

.sidebar-card img {
  width: 130px;
  margin-bottom: 14px;
  border-radius: 8px;
}

.sidebar-card .sc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.sidebar-card .sc-sub {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-card .btn-cta {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 0.97rem;
  padding: 13px 16px;
}

.sidebar-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sidebar-nav a {
  display: block;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { background: var(--blue-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.cta-banner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-banner p { font-size: 0.95rem; opacity: 0.88; margin: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  padding: 32px 24px;
  text-align: center;
}

footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: #fff; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar-card,
  .sidebar-nav {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  nav { display: none; }
  .burger { display: flex; }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 28px;
    padding: 0;
  }

  .hero-img {
    width: 170px;
    margin: 0 auto;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .page-layout {
    padding: 28px 16px;
  }

  .hero {
    padding: 40px 16px 36px;
  }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.5rem; }
  .btn-cta { font-size: 0.92rem; padding: 12px 20px; }
}
