@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700;800&display=swap");

:root {
  --accent: #1a56db;
  --accent2: #3b82f6;
  --accent-light: #60a5fa;
  --gold: #c9a84c;
  --gold-light: #e0c87a;
  --gold-dim: #8a7233;
  --bg: #04070f;
  --bg2: #070d1a;
  --bg3: #0c1530;
  --bg4: #111e3d;
  --white: #f0eff4;
  --text: #c8c6d0;
  --text-muted: #8e8da0;
  --text-dim: #5c5b6e;
  --border: rgba(201, 168, 76, 0.12);
  --border-blue: rgba(26, 86, 219, 0.2);
  --font-display: "Cinzel", serif;
  --font-heading: "Lora", serif;
  --font-body: "Nunito", sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-w: 260px;
  --radius: 6px;
  --radius-lg: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--gold-light);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 36px 0 28px;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.sidebar-logo .logo-crest {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bg);
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.sidebar-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.sidebar-logo .logo-text span {
  color: var(--gold);
}

.sidebar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
  color: var(--gold-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.sidebar-divider::before,
.sidebar-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 12px;
}

.sidebar-links {
  flex: 1;
  padding: 0 20px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  margin-bottom: 4px;
  position: relative;
}

.sidebar-links a i {
  width: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-dim);
  transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: rgba(26, 86, 219, 0.1);
  color: var(--gold-light);
}

.sidebar-links a:hover i,
.sidebar-links a.active i {
  color: var(--gold);
}

.sidebar-cta {
  margin: 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sidebar-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.sidebar-cta a:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  color: var(--white);
}

.main-content {
  margin-left: var(--sidebar-w);
}

.topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(4, 7, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1001;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.topbar-logo .logo-crest-sm {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--bg);
}

.topbar-logo .logo-text-sm {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.topbar-logo .logo-text-sm span {
  color: var(--gold);
}

.burger-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.burger-btn:hover {
  background: rgba(201, 168, 76, 0.1);
}

.mobile-nav {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 7, 15, 0.97);
    backdrop-filter: blur(16px);
    z-index: 1002;
    padding: 90px 32px 40px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }

  .mobile-nav a i {
    width: 22px;
    text-align: center;
    color: var(--gold-dim);
    font-size: 0.9rem;
  }

  .mobile-nav a:hover {
    background: rgba(26, 86, 219, 0.1);
    color: var(--gold-light);
  }

  .mobile-nav .mobile-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 86, 219, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
}

.btn-gold:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  color: var(--bg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  color: var(--gold-dim);
  font-size: 0.65rem;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 50% 30%,
      rgba(26, 86, 219, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    ),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.03) 60px,
      rgba(201, 168, 76, 0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.03) 60px,
      rgba(201, 168, 76, 0.03) 61px
    );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(26, 86, 219, 0.08);
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.o-nama {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}

.o-nama::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

.o-nama-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.o-nama-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.o-nama-text p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.o-nama-text p:last-child {
  margin-bottom: 0;
}

.o-nama-aside {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.o-nama-aside .aside-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.o-nama-aside .aside-item:last-child {
  margin-bottom: 0;
}

.aside-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26, 86, 219, 0.12);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.9rem;
}

.aside-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}

.aside-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.usluge {
  padding: 100px 0;
  background: var(--bg);
}

.usluge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.usluga-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.usluga-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.usluga-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 86, 219, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.usluga-card:hover::before {
  opacity: 1;
}

.usluga-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 86, 219, 0.1);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.usluga-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.usluga-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.kako-radi {
  padding: 100px 0;
  background: var(--bg2);
}

.koraci-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.korak-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.korak-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(26, 86, 219, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.korak-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.korak-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.korak-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -14px;
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

.top-bukmejkeri {
  padding: 100px 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(26, 86, 219, 0.08) 0%,
      transparent 50%
    ),
    var(--bg);
}

.buk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.buk-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.buk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 168, 76, 0.2);
}

.buk-card-rank {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.buk-card-logo {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.buk-card-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.buk-card-body {
  padding: 24px;
}

.buk-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.buk-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.buk-stars i {
  color: var(--gold);
  font-size: 0.85rem;
}
.buk-stars i.dim {
  color: var(--text-dim);
}

.buk-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.buk-info-row i {
  width: 18px;
  color: var(--accent-light);
  font-size: 0.8rem;
  margin-top: 3px;
  text-align: center;
}

.buk-card-footer {
  padding: 0 24px 24px;
}

.buk-card-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.buk-card-footer a:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  color: var(--white);
}

.prednosti {
  padding: 100px 0;
  background: var(--bg2);
}

.prednosti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.prednost-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.prednost-item:hover {
  border-color: var(--border-blue);
  transform: translateY(-2px);
}

.prednost-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.prednost-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 600;
}

.prednost-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.test-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.test-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.12);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.test-stars i {
  color: var(--gold);
  font-size: 0.8rem;
}

.test-card blockquote {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.test-author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.test-author-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.faq {
  padding: 100px 0;
  background: var(--bg2);
}

.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-question i {
  color: var(--gold-dim);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.kontakt {
  padding: 100px 0;
  background: var(--bg);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.kontakt-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(26, 86, 219, 0.1);
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1rem;
}

.kontakt-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.kontakt-info-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.kontakt-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.rk-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.rk-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.rk-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}

.rk-footer-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rk-footer-brand .logo-crest-sm {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg);
}

.rk-footer-brand .logo-text-sm {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.rk-footer-brand .logo-text-sm span {
  color: var(--gold);
}

.rk-footer-brand-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.rk-footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rk-badge-18 {
  width: 56px;
  height: 56px;
  background: #cc1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.rk-badge-uprava {
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 0 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.rk-badge-uprava img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.rk-badge-uprava a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.rk-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.rk-footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.rk-footer-col p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rk-footer-col strong {
  color: var(--white);
}

.rk-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rk-footer-nav li {
  margin-bottom: 10px;
}
.rk-footer-nav a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-block;
}
.rk-footer-nav a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.rk-footer-bottom {
  padding: 28px 0 36px;
}
.rk-footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 14px;
}
.rk-footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.rk-footer-disclaimer-en {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.96);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-overlay.hidden {
  display: none;
}

.age-box {
  text-align: center;
  max-width: 440px;
  padding: 48px 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-box .age-crest {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--bg);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.age-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.age-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.age-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-btns .btn {
  min-width: 140px;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner p a {
  color: var(--accent-light);
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}
.reveal-delay-6 {
  transition-delay: 0.48s;
}

.legal-hero {
  padding: 140px 0 64px;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(26, 86, 219, 0.1) 0%,
      transparent 55%
    ),
    var(--bg2);
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.legal-hero p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 24px;
  list-style: disc;
}
.legal-content a {
  color: var(--accent-light);
}
.legal-content a:hover {
  color: var(--gold-light);
}

@media (max-width: 1024px) {
  .sidebar-nav {
    display: none;
  }
  .topbar {
    display: flex;
  }
  .main-content {
    margin-left: 0;
  }

  .hero {
    padding-top: 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual-frame {
    max-width: 380px;
    margin: 0 auto;
  }

  .o-nama-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .usluge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .koraci-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .korak-item:not(:last-child)::after {
    display: none;
  }
  .buk-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .prednosti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .test-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .rk-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-hero {
    padding: 100px 0 48px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .usluge-grid {
    grid-template-columns: 1fr;
  }
  .koraci-grid {
    grid-template-columns: 1fr;
  }
  .prednosti-grid {
    grid-template-columns: 1fr;
  }
  .rk-footer-columns {
    grid-template-columns: 1fr;
  }
  .rk-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .age-box {
    margin: 20px;
    padding: 32px 24px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-btns {
    width: 100%;
  }
  .cookie-btns .btn {
    flex: 1;
    justify-content: center;
  }
}
