/* =====================================================
   obstaravanie.eu – hlavný štýl
   Farby vychádzajú z loga a grafického návrhu
   ===================================================== */

:root {
  --blue: #2b6be0;
  --blue-dark: #1d4fae;
  --navy: #1e2f55;
  --green: #6cae2f;
  --green-dark: #5a9424;
  --yellow: #f6b93b;
  --pink: #ee6f9a;
  --purple: #8e6fd8;
  --teal: #2aa8a0;
  --text: #3d4a66;
  --muted: #6b7a99;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-panel: #f3f7fd;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(30, 47, 85, 0.08);
}

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

html { scroll-behavior: smooth; }

/* Kotvy nesmú skončiť pod lepiacou hlavičkou */
section[id], footer[id] { scroll-margin-top: 88px; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

/* Obrázky s pevnou šírkou nesmú roztiahnuť grid za okraj displeja */
.hero-grid > *, .why-panel > * { min-width: 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; }

/* ===== Tlačidlá ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,47,85,.15); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-outline {
  background: #fff;
  color: var(--blue);
  border: 2px solid #c9d9f5;
}
.btn-outline:hover { border-color: var(--blue); }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }

/* ===== Hlavička ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #edf2fb;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo { height: 54px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav > a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  white-space: nowrap;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav > a:hover { color: var(--blue); }
.main-nav > a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(circle at 85% 15%, #eef4fd 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, #f2f8ec 0%, transparent 40%),
    #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 72px;
}
.hero-text { position: relative; }
.hero h1 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.5px;
}
.script-accent {
  display: block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--green);
  font-size: 64px;
  line-height: 1;
  margin: 4px 0;
}
.h1-sub { display: block; font-size: .82em; }

/* Logový zápis "obstaravanie.eu" v texte */
.wordmark {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.45em;
  line-height: 1;
}
.wordmark .eu { color: var(--green); }
.wordmark-q { font-family: 'Caveat', cursive; font-weight: 700; color: var(--navy); font-size: 1.45em; line-height: 1; }
.wordmark-line { position: relative; display: inline-flex; align-items: flex-end; gap: 4px; padding-bottom: 6px; margin-top: 10px; }
.wordmark-img { height: 52px; width: auto; }
.why-swoosh { position: absolute; left: 0; bottom: -18px; width: 100%; }
.lead {
  margin: 22px 0 30px;
  font-size: 17px;
  max-width: 46ch;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.doodle-plane {
  position: absolute;
  right: -18px;
  top: 24%;
  width: 136px;
}
.doodle-ticks {
  position: absolute;
  left: -42px;
  top: -20px;
  width: 38px;
}

.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  border-radius: 56% 44% 52% 48% / 47% 53% 47% 53%;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.hero-blob-bg, .hero-blob-bg2 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero-blob-bg {
  width: 200px; height: 200px;
  background: #e4eefb;
  left: -40px; bottom: -30px;
}
.hero-blob-bg2 {
  width: 150px; height: 150px;
  background: #fdeef3;
  right: -30px; bottom: 40px;
}

.badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(30,47,85,.18);
}
.badge svg { width: 34px; height: 34px; }
.badge { color: #fff; }
.badge { animation: float 4.5s ease-in-out infinite; }
.badge-yellow { animation-delay: -1.5s; }
.badge-pink { animation-delay: -3s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
.badge-blue { background: var(--blue); top: -6px; left: 6%; }
.badge-yellow { background: var(--yellow); top: 14%; right: -14px; }
.badge-pink { background: var(--pink); bottom: -18px; left: 44%; }

/* ===== Trust bar ===== */
.trustbar-wrap { margin-top: -34px; position: relative; z-index: 5; padding-bottom: 20px; }
.trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid #eef2fa;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 6px 18px;
}
.trust-item + .trust-item { border-left: 1px solid #edf1f9; }
.trust-item h3 { font-size: 16px; font-weight: 600; }
.trust-item p { font-size: 14px; color: var(--muted); }
.trust-icon {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 28px; height: 28px; }
.ti-blue { background: #e4eefb; color: var(--blue); }
.ti-green { background: #edf6e2; color: var(--green); }
.ti-pink { background: #fdeaf1; color: var(--pink); }

/* ===== Sekcie ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-title {
  position: relative;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 48px;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.title-swoosh {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 180px;
}
.deco-curl { position: absolute; left: -66px; top: -4px; width: 40px; }
.deco-sparkle { position: absolute; right: -48px; top: -18px; width: 30px; }
.section-lead {
  text-align: center;
  max-width: 62ch;
  margin: -28px auto 44px;
  color: var(--muted);
}

/* ===== Kroky ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: start;
}
.step { text-align: center; padding: 0 8px; }
.step-bubble {
  position: relative;
  width: 108px; height: 108px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.step:hover .step-bubble { transform: scale(1.08) rotate(-3deg); }
.step-bubble svg { width: 46px; height: 46px; color: #25355e; }
.sb-blue { background: #e4eefb; }
.sb-green { background: #edf6e2; }
.sb-yellow { background: #fdf3dd; }
.sb-purple { background: #f0eafb; }

.step-num {
  position: absolute;
  top: -4px; left: -4px;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(30,47,85,.2);
}
.sn-blue { background: var(--blue); }
.sn-green { background: var(--green); }
.sn-yellow { background: var(--yellow); }
.sn-purple { background: var(--purple); }

.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

.step-arrow { width: 64px; margin-top: 50px; }

/* ===== Služby ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #eef2fa;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 3px 14px rgba(30,47,85,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { font-size: 17px; margin: 16px 0 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.1); }
.service-icon svg { width: 28px; height: 28px; }
.si-blue { background: #e4eefb; color: var(--blue); }
.si-green { background: #edf6e2; color: var(--green); }
.si-yellow { background: #fdf3dd; color: #d9950f; }
.si-whatsapp { background: #e6f9ee; color: #25d366; }
.si-pink { background: #fdeaf1; color: var(--pink); }
.si-purple { background: #f0eafb; color: var(--purple); }
.si-teal { background: #e2f5f4; color: var(--teal); }

/* ===== Prečo práve my ===== */
.why-panel {
  background: var(--bg-panel);
  border: 1px solid #e4edf9;
  border-radius: 26px;
  padding: 48px 54px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.why-left { display: flex; flex-direction: column; }
.deco-dot { position: absolute; border-radius: 50%; z-index: 2; }
.dd-green { width: 9px; height: 9px; background: var(--green); right: 3%; top: 40%; }
.dd-purple { width: 11px; height: 11px; background: var(--purple); right: 4.5%; top: 25%; }
.dd-blue { width: 8px; height: 8px; background: var(--blue); right: 2.2%; top: 55%; }
.dd-ring { width: 11px; height: 11px; background: transparent; border: 3px solid var(--yellow); right: 3.8%; bottom: 28%; }
.deco-star { position: absolute; right: 2.8%; bottom: 9%; width: 30px; }
.why-left h2 { font-size: 32px; margin-bottom: 26px; }
.why-brand { color: var(--blue); }
.dot-eu { color: var(--green); }
.why-illustration {
  width: calc(100% + 54px);
  max-width: none;
  margin: auto 0 0 -54px;
  border-radius: 0 0 0 26px;
}

.why-list { list-style: none; display: grid; gap: 22px; align-self: center; padding-bottom: 48px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: transform .2s ease;
}
.why-list li:hover { transform: translateX(5px); }
.check {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check svg { width: 17px; height: 17px; }
.c-green { background: var(--green); }
.c-blue { background: var(--blue); }
.c-yellow { background: var(--yellow); }
.c-pink { background: var(--pink); }
.c-purple { background: var(--purple); }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #eef2fa;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(30,47,85,.05);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: #c9d9f5; box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item p { padding: 0 22px 18px; font-size: 15px; }

/* ===== CTA banner ===== */
.cta-wrap { padding-top: 10px; }
.cta-banner {
  background: linear-gradient(100deg, #87a3f3, #6a90f0);
  border-radius: 24px;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 14px 34px rgba(43,107,224,.28);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  pointer-events: none;
}
.cta-banner::before { width: 220px; height: 220px; right: -60px; top: -110px; }
.cta-banner::after { width: 140px; height: 140px; left: 30%; bottom: -90px; }
.cta-icon {
  flex: none;
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-icon svg { width: 30px; height: 30px; color: var(--blue); }
.cta-text {
  flex: 1;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
  min-width: 260px;
}
.cta-text strong { font-weight: 700; }

/* ===== Pätička ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid #edf2fb;
  padding-top: 56px;
  position: relative;
  overflow: hidden;
}
.footer-art {
  position: absolute;
  right: 24px;
  bottom: 54px;
  width: 222px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.company-info { margin-top: 16px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.company-info strong { color: var(--navy); }
.footer-col h4 { font-size: 16px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 14.5px;
}
.footer-col a:hover { color: var(--blue); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #e4eefb;
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.socials a:hover { background: var(--blue); color: #fff; }
.socials svg { width: 18px; height: 18px; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
}
.contact-list svg { width: 17px; height: 17px; color: var(--blue); flex: none; }

.footer-bottom {
  border-top: 1px solid #edf2fb;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

/* ===== Jemné odhalenie pri skrolovaní ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(43,107,224,.45);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =====================================================
   Responzívne zobrazenie
   ===================================================== */
@media (max-width: 1180px) {
  .main-nav { gap: 16px; }
  .main-nav > a { font-size: 14px; }
  .btn-sm { padding: 9px 14px; }
}

@media (max-width: 1020px) {
  .hero h1 { font-size: 38px; }
  .script-accent { font-size: 54px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .step-arrow { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid #edf2fb;
    box-shadow: 0 18px 30px rgba(30,47,85,.12);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .main-nav > a { font-size: 15px; }
  .main-nav.open { transform: translateY(0); }
  .nav-actions { margin-left: 0; }
  .nav-toggle { display: flex; }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .hero-media { max-width: 440px; margin: 0 auto; }
  .doodle-plane, .doodle-ticks, .deco-curl, .deco-sparkle, .footer-art { display: none; }

  .trustbar { grid-template-columns: 1fr; gap: 8px; }
  .trust-item { justify-content: flex-start; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid #edf1f9; padding-top: 16px; }

  .why-panel { grid-template-columns: 1fr; padding: 34px 26px; }
  .why-illustration { width: 100%; margin: 18px 0 0; border-radius: 14px; }
  .why-list { padding-bottom: 0; }
  .cta-banner { padding: 30px 26px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .script-accent { font-size: 44px; }
  .section { padding: 54px 0; }
  .section-title { font-size: 27px; }
  .steps { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge { width: 54px; height: 54px; }
  .badge svg { width: 26px; height: 26px; }
}

/* ===== Podstránka O nás ===== */
.about-intro { padding-bottom: 10px; }
.about-intro .section-title, .about-intro .section-lead { text-align: center; }
.about-intro .section-lead { max-width: 60ch; margin-left: auto; margin-right: auto; }
.about-trustbar { margin-top: 10px; padding-bottom: 0; }
.about-what { padding-top: 56px; }
.about-text p { margin-bottom: 18px; }
.about-text strong, .about-funding-note strong, .mission-panel strong { color: var(--navy); }
.about-chips {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  margin: 26px 0 26px;
}
.about-chips li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--navy); }
.about-funding .section-title, .about-funding .section-lead { text-align: center; }
.about-funding-list { max-width: 640px; margin-left: auto; margin-right: auto; }
.about-funding-note { text-align: center; max-width: 62ch; margin: 6px auto 0; }
.about-mission { padding-top: 20px; padding-bottom: 0; }
.mission-panel {
  position: relative;
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 38px 44px;
  font-size: 17px;
  line-height: 1.7;
}
.mission-star { position: absolute; top: -14px; right: 26px; width: 30px; }
.mission-accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--green);
  font-size: 1.5em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .about-chips { grid-template-columns: 1fr; }
  .mission-panel { padding: 28px 24px; }
}

/* ===== Pripravované podstránky ===== */
.stub-section .section-title, .stub-section .section-lead { text-align: center; }
.stub-panel {
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  margin-top: 30px;
}
.stub-doodle { width: 44px; margin: 0 auto 18px; display: block; }
.stub-panel p { margin-bottom: 24px; }
.stub-panel strong { color: var(--navy); }

/* ===== Realizované projekty – zošitové listy ===== */
.projects-page .section-title, .projects-page .section-lead { text-align: center; }
.notebooks { display: grid; gap: 44px; margin-top: 38px; }
.notebook {
  position: relative;
  background:
    repeating-linear-gradient(to bottom, transparent 0 33px, #d9e2f1 33px 34px),
    #fffdf8;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(30, 47, 85, 0.12);
  padding: 34px 42px 38px 86px;
}
.notebook::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 62px;
  width: 2px;
  background: #f3aebc;
}
.notebook::after {
  content: "";
  position: absolute;
  top: 30px; bottom: 20px; left: 22px;
  width: 16px;
  background-image: radial-gradient(circle at 8px 8px, #eef2f8 7px, rgba(30,47,85,.12) 7.5px, transparent 9px);
  background-size: 16px 102px;
  background-repeat: repeat-y;
}
.notebook:nth-child(odd) { transform: rotate(-0.4deg); }
.notebook:nth-child(even) { transform: rotate(0.35deg); }
.notebook-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 31px;
  line-height: 34px;
  color: var(--navy);
  margin-bottom: 34px;
}
.notebook-count { font-size: 22px; color: #8a93a6; font-weight: 600; }
.notebook-list { list-style: none; }
.notebook-list .notebook-year {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.notebook-list .nb-gap { margin-top: 34px; }
.notebook-list li {
  font-family: 'Caveat', cursive;
  font-size: 22.5px;
  line-height: 34px;
  color: #555e6f;
  font-weight: 600;
}
.notebook-list li strong { font-weight: 700; color: #39415a; }
.notebook-tape {
  position: absolute;
  top: -13px; left: 50%;
  width: 130px; height: 28px;
  transform: translateX(-50%) rotate(-2deg);
  opacity: .55;
  clip-path: polygon(3% 0, 97% 4%, 100% 96%, 0 100%);
}
.tape-yellow { background: #f6c344; }
.tape-blue { background: #7fa8ef; transform: translateX(-50%) rotate(1.6deg); }
.tape-green { background: #9ccb6b; }
.tape-pink { background: #f2a0b8; transform: translateX(-50%) rotate(1.4deg); }
.notebook-pencil {
  position: absolute;
  top: -34px; right: 26px;
  width: 86px;
  transform: scaleX(-1) rotate(-14deg);
  filter: drop-shadow(0 4px 6px rgba(30,47,85,.2));
}
@media (max-width: 700px) {
  .notebook { padding: 30px 22px 34px 58px; }
  .notebook::before { left: 42px; }
  .notebook::after { left: 12px; }
  .notebook-list li { font-size: 20px; }
}

/* ===== Karta Školské pomôcky – kreslenie loga skolam.sk ===== */
.skolam-logo-draw { display: block; margin-top: 16px; height: 26px; }
.skolam-logo-draw img {
  height: 100%;
  width: auto;
  clip-path: inset(-2px 100% -2px 0);
  opacity: 0;
  transition: clip-path 1.1s ease-out .05s, opacity .2s ease .05s;
}
.service-card:hover .skolam-logo-draw img {
  clip-path: inset(-2px 0% -2px 0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .skolam-logo-draw img { clip-path: none; opacity: 1; transition: none; }
}

/* ===== Podstránka Kontakt ===== */
.contact-section { padding-top: 0; }
a.service-card { display: block; text-decoration: none; color: inherit; }
a.service-card p strong { color: var(--navy); }
.contact-info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 34px 40px;
  margin-top: 36px;
}
.contact-info-panel h3 { margin-bottom: 10px; font-size: 17px; }
.contact-info-panel strong { color: var(--navy); }
@media (max-width: 700px) {
  .contact-info-panel { grid-template-columns: 1fr; padding: 26px 24px; }
}

/* ===== Tematický kurzor – ceruzka a pastelka (Twemoji, CC-BY 4.0) ===== */
body {
  cursor: url('../img/cursor-pencil.png') 1 30, auto;
  cursor: -webkit-image-set(url('../img/cursor-pencil.png') 1x, url('../img/cursor-pencil@2x.png') 2x) 1 30, auto;
}
a, button, summary, .btn {
  cursor: url('../img/cursor-pencil-green.png') 1 30, pointer;
  cursor: -webkit-image-set(url('../img/cursor-pencil-green.png') 1x, url('../img/cursor-pencil-green@2x.png') 2x) 1 30, pointer;
}
