/* ===========================
   POMOC PRE TEBA – style.css
   Original dark theme, original colors, extended
   =========================== */

:root {
  --orange: #ff6b35;
  --yellow: #ffd700;
  --green:  #00c896;
  --purple: #7c5cbf;
  --dark:   #0f1117;
  --dark2:  #181c27;
  --dark3:  #1f2435;
  --card:   #242840;
  --text:   #e8eaf0;
  --muted:  #8b90a4;
  --white:  #ffffff;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(0,0,0,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ══════════════════════════════
   SVG BACKGROUND PATTERN
══════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Ccircle cx='12' cy='12' r='2.5' fill='%23ff6b35' opacity='.1'/%3E%3Ccircle cx='80' cy='50' r='4' fill='%2300c896' opacity='.09'/%3E%3Ccircle cx='145' cy='15' r='2' fill='%237c5cbf' opacity='.1'/%3E%3Ccircle cx='45' cy='110' r='3.5' fill='%23ffd700' opacity='.09'/%3E%3Ccircle cx='130' cy='100' r='2.5' fill='%23ff6b35' opacity='.08'/%3E%3Cline x1='0' y1='80' x2='160' y2='80' stroke='%23ff6b35' stroke-width='.4' opacity='.05'/%3E%3Cline x1='80' y1='0' x2='80' y2='160' stroke='%2300c896' stroke-width='.4' opacity='.05'/%3E%3Crect x='64' y='64' width='32' height='32' rx='6' fill='none' stroke='%237c5cbf' stroke-width='.6' opacity='.08'/%3E%3Cpolygon points='160,0 130,0 160,30' fill='%23ff6b35' opacity='.05'/%3E%3Cpolygon points='0,160 30,160 0,130' fill='%2300c896' opacity='.05'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,17,23,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 2px;
  display: flex; align-items: center; gap: .5rem;
  color: var(--white);
}
.logo strong { color: var(--orange); }
.logo-icon { font-size: 1.4rem; }

.nav-links { list-style: none; display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { font-weight: 700; font-size: .9rem; letter-spacing: .4px; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-ref {
  background: var(--orange); color: var(--white) !important;
  padding: .4rem 1.1rem; border-radius: 50px;
  transition: background .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.nav-ref:hover { background: #e85a22 !important; transform: translateY(-1px); }
.nav-ref.active { background: var(--yellow); color: var(--dark) !important; }
/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block; height: 2.5px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ══════════════════════════════
   BG SHAPES
══════════════════════════════ */
.hero-bg-shapes {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .12; }
.s1 { width: 500px; height: 500px; background: var(--orange); top: -100px; right: -100px; animation: float1 8s ease-in-out infinite; }
.s2 { width: 350px; height: 350px; background: var(--purple); bottom: -50px; left: -80px; animation: float2 10s ease-in-out infinite; }
.s3 { width: 250px; height: 250px; background: var(--green); top: 40%; left: 40%; animation: float1 12s ease-in-out infinite reverse; }

@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px,20px) scale(1.08); }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem;
  max-width: 1200px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-content {
  flex: 1; max-width: 580px; position: relative; z-index: 1;
  animation: fadeUp .7s ease both;
}
.badge {
  display: inline-block;
  background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.4);
  color: var(--orange); font-size: .85rem; font-weight: 700; letter-spacing: 1px;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1; color: var(--white); margin-bottom: 1rem;
}
.accent { color: var(--orange); }
.hero-sub { font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: .5px;
  padding: .8rem 2rem; border-radius: 50px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 24px rgba(255,107,53,0.4);
}
.btn-primary:hover { background: #e85a22; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.07); color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* HERO VISUAL — ORBIT */
.hero-visual {
  flex: 0 0 460px; position: relative; z-index: 1;
  height: 460px;
  animation: fadeUp .9s ease .2s both;
}

/* Outer ring decoration */
.orbit-ring {
  width: 420px; height: 420px;
  position: relative;
  margin: 20px auto 0;
}
.orbit-ring::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,107,53,0.22);
  animation: spinRing 30s linear infinite;
}
.orbit-ring::after {
  content: '';
  position: absolute; inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(124,92,191,0.15);
  animation: spinRing 20s linear infinite reverse;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Center circle */
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 148px; height: 148px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 0 0 8px rgba(255,107,53,0.1), 0 0 50px rgba(255,107,53,0.35);
  z-index: 2;
}
.orbit-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; color: white; line-height: 1;
  letter-spacing: 2px;
}
.orbit-sub {
  font-size: .52rem; color: rgba(255,255,255,0.7);
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
}

/* Individual orbit items — placed by angle around circle */
/* radius = 185px from center (210px center offset) */
.orbit-item {
  position: absolute;
  width: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center;
  transform-origin: center center;
  animation: floatOrbit 5s ease-in-out infinite;
}
.oi-icon { font-size: 1.7rem; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.oi-lbl {
  font-size: .68rem; font-weight: 800; color: var(--text);
  line-height: 1.2; white-space: normal; text-align: center;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.09);
  padding: .25rem .45rem; border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

/* 8 positions — evenly at 45° steps, r=185px, center=210px */
/* angle 0°   = top      */
/* angle 45°  = top-right */
/* angle 90°  = right    */  
/* etc.                  */
/* left = 210 + r*sin(a) - 45 (half width)  */
/* top  = 210 - r*cos(a) - half-height      */

.oi1 { left: calc(50% - 45px); top:  6px;  animation-delay: 0s;    } /* 0°   top       */
.oi2 { left: calc(50% + 86px); top: 44px;  animation-delay: .6s;   } /* 45°  top-right */
.oi3 { left: calc(50% + 135px);top: calc(50% - 42px); animation-delay: 1.2s; } /* 90°  right     */
.oi4 { left: calc(50% + 86px); top: calc(50% + 72px); animation-delay: 1.8s; } /* 135° bot-right */
.oi5 { left: calc(50% - 45px); bottom: 6px; animation-delay: 2.4s;  } /* 180° bottom    */
.oi6 { left: calc(50% - 176px);top: calc(50% + 72px); animation-delay: 3s;   } /* 225° bot-left  */
.oi7 { left: calc(50% - 180px);top: calc(50% - 42px); animation-delay: 3.6s; } /* 270° left      */
.oi8 { left: calc(50% - 176px);top: 44px;  animation-delay: 4.2s;  } /* 315° top-left  */

@keyframes floatOrbit {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════
   O NÁS
══════════════════════════════ */
.o-nas {
  background: var(--dark2);
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
  padding: 90px 2rem;
  position: relative; z-index: 1;
}
.onas-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: 4rem; align-items: start;
}
.onas-icon-col { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding-top: .5rem; }
.onas-bigicon { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(255,107,53,0.4)); }
.onas-badge-list { display: flex; flex-direction: column; gap: .6rem; width: 100%; }
.onas-badge-list span {
  background: var(--card); border: 1px solid rgba(255,107,53,0.2);
  border-radius: 10px; padding: .5rem .9rem;
  font-size: .85rem; font-weight: 700; color: var(--muted);
  text-align: center;
}
.onas-text { position: relative; z-index: 1; }
.onas-text p {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 1rem;
}
.onas-text strong { color: var(--text); }
.stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--orange); line-height: 1; }
.stat-lbl { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.sluzby {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 2rem;
  position: relative; z-index: 1;
}
.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: .6rem;
}
.section-title { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--c, var(--orange));
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card.featured { border-color: rgba(255,215,0,0.3); box-shadow: 0 0 30px rgba(255,215,0,0.1); }
.svc-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 900;
  color: var(--white); margin-bottom: .7rem;
}
.service-card p { font-size: .95rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.service-card ul li { font-size: .88rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.service-card ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--c, var(--orange)); font-weight: 900;
}
.popular-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--yellow); color: var(--dark);
  font-size: .72rem; font-weight: 900; letter-spacing: 1px;
  padding: .25rem .7rem; border-radius: 50px; text-transform: uppercase;
}

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
  background: var(--dark2); padding: 80px 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 1;
}
.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.why-text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
.why-text > p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.why-checklist { display: flex; flex-direction: column; gap: 1rem; }
.check-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--dark3); padding: 1rem 1.2rem; border-radius: 12px;
  font-weight: 700; font-size: .95rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color .2s, transform .2s;
}
.check-item:hover { border-color: rgba(0,200,150,0.3); transform: translateX(4px); }
.ck {
  font-size: 1.2rem; color: var(--green);
  background: rgba(0,200,150,0.12);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══════════════════════════════
   HODNOTENIA
══════════════════════════════ */
.hodnotenia {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 2rem;
  position: relative; z-index: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.review-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
  color: var(--orange); opacity: .12; line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.review-stars { font-size: 1.1rem; }
.review-text { font-size: .95rem; color: var(--muted); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: .9rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: white;
  flex-shrink: 0;
}
.review-name { font-weight: 800; font-size: .95rem; color: var(--white); }
.review-loc { font-size: .8rem; color: var(--muted); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.kontakt {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 2rem; position: relative; z-index: 1;
}
.contact-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 1.3rem; border-radius: 14px;
  transition: border-color .2s;
}
.ci-card:hover { border-color: rgba(255,107,53,0.3); }
.ci-icon { font-size: 1.5rem; }
.ci-label { font-size: .75rem; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.ci-value { font-size: 1rem; font-weight: 800; color: var(--white); display: block; }
a.ci-value:hover { color: var(--orange); }

.ref-link-card {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, rgba(255,107,53,.15), rgba(124,92,191,.15));
  border: 1px solid rgba(255,107,53,0.3);
  padding: 1.1rem 1.3rem; border-radius: 14px;
  font-weight: 800; font-size: .95rem;
  transition: transform .2s, background .2s;
}
.ref-link-card:hover { transform: translateX(4px); background: rgba(255,107,53,.15); }
.arrow { font-size: 1.3rem; color: var(--orange); }

/* SOCIAL BUTTONS */
.social-row { display: flex; gap: .8rem; }
.social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1rem; border-radius: 14px;
  font-weight: 800; font-size: .92rem;
  transition: transform .2s, box-shadow .2s;
}
.social-fb {
  background: rgba(24,119,242,0.15); color: #4a9cf5;
  border: 1px solid rgba(24,119,242,0.35);
}
.social-fb:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.25); background: rgba(24,119,242,0.22); }
.social-ig {
  background: rgba(225,48,108,0.15); color: #f2567a;
  border: 1px solid rgba(225,48,108,0.35);
}
.social-ig:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225,48,108,0.25); background: rgba(225,48,108,0.22); }

/* FORM */
.contact-form {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: .88rem; font-weight: 700; color: var(--muted); letter-spacing: .5px; }
.req { color: var(--orange); }
.form-group input, .form-group textarea {
  background: var(--dark3); border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Nunito', sans-serif; font-size: .98rem;
  padding: .85rem 1.1rem; border-radius: 12px; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4a5068; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.char-count { text-align: right; font-size: .8rem; color: var(--muted); margin-top: -.7rem; }
.btn-submit { width: 100%; justify-content: center; margin-top: .5rem; font-size: 1.05rem; }

/* SUCCESS MSG */
.success-msg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.success-msg.show { opacity: 1; pointer-events: all; }
.success-inner {
  background: var(--card); border: 1px solid rgba(0,200,150,0.3);
  border-radius: var(--radius); padding: 3rem; max-width: 440px; width: 90%;
  text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-inner h3 {
  font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: var(--green); margin-bottom: .8rem;
}
.success-inner p { color: var(--muted); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: var(--white); }
.footer-logo strong { color: var(--orange); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .9rem; font-weight: 700; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: .8rem; align-items: center; }
.footer-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: background .2s, color .2s, transform .2s;
}
.footer-social-icon:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.footer-copy { font-size: .82rem; color: var(--muted); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* ══════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════ */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .onas-inner { grid-template-columns: 1fr; }
  .onas-icon-col { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 1.5rem; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
══════════════════════════════ */
@media (max-width: 600px) {

  /* --- NAVBAR: hamburger menu --- */
  .navbar { padding: 0 1rem; z-index: 500; }
  .nav-inner { height: 58px; }
  .logo { font-size: 1.35rem; }
  .hamburger {
    display: flex;
    position: relative; z-index: 502;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: #0f1117;
    border-bottom: 2px solid rgba(255,107,53,0.3);
    padding: 1rem 1.5rem 1.8rem;
    gap: .2rem;
    z-index: 501;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: flex !important; }
  .nav-links a {
    font-size: 1.05rem; padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%; display: block;
    color: var(--text) !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-links a:active { color: var(--orange) !important; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-ref {
    background: var(--orange) !important;
    color: white !important;
    padding: .8rem 1.2rem !important;
    border-radius: 10px !important;
    text-align: center;
    margin-top: .6rem;
    font-size: 1.05rem !important;
    box-shadow: 0 4px 16px rgba(255,107,53,0.35);
    display: block !important;
  }

  /* --- HERO --- */
  .hero { padding: 90px 1.2rem 60px; gap: 2rem; }
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .badge { font-size: .75rem; }

  /* --- O NÁS --- */
  .o-nas { padding: 60px 1.2rem; }
  .onas-inner { gap: 2rem; }
  .onas-bigicon { font-size: 3.5rem; }
  .onas-text p { font-size: .97rem; }
  .stats-row { flex-direction: row; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
  .stat-num { font-size: 2.2rem; }

  /* --- SERVICES --- */
  .sluzby { padding: 60px 1.2rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .section-title { font-size: 2.2rem; margin-bottom: 1.8rem; }
  .service-card { padding: 1.5rem; }

  /* --- WHY US --- */
  .why-us { padding: 60px 1.2rem; }
  .why-inner { gap: 2rem; }
  .check-item { font-size: .88rem; padding: .8rem 1rem; }

  /* --- HODNOTENIA --- */
  .hodnotenia { padding: 60px 1.2rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .review-card { padding: 1.4rem; }

  /* --- KONTAKT --- */
  .kontakt { padding: 60px 1.2rem; }
  .contact-form { padding: 1.5rem; }
  .ci-card { padding: .9rem 1rem; }
  .ci-value { font-size: .93rem; }
  .social-row { flex-direction: row; }
  .social-btn { padding: .75rem .8rem; font-size: .85rem; }

  /* --- FOOTER --- */
  .footer { padding: 2rem 1.2rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: .9rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-social { justify-content: center; }

  /* --- SUCCESS MODAL --- */
  .success-inner { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤380px)
══════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links a { font-size: .76rem; }
  .social-row { flex-direction: column; }
  .stats-row { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════
   COOKIES LIŠTA
══════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--dark2);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.45);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
  padding: 1.1rem 2rem;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar.hidden  { transform: translateY(110%); }

.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
  display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 260px;
}
.cookie-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.cookie-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.cookie-text p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }

.cookie-actions { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--orange); color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .92rem;
  padding: .65rem 1.5rem;
  box-shadow: 0 4px 18px rgba(255,107,53,0.4);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-cookie-accept:hover {
  background: #e85a22; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.5);
}
.btn-cookie-detail {
  background: transparent; color: var(--muted);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .88rem;
  padding: .62rem 1.2rem;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-cookie-detail:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ── COOKIES MODAL ── */
.cookie-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(5px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cookie-overlay.show { opacity: 1; pointer-events: all; }

.cookie-modal {
  position: fixed; z-index: 1001;
  top: 50%; left: 50%; transform: translate(-50%, -48%) scale(.96);
  width: 90%; max-width: 540px;
  background: var(--card);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  padding: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal.show {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.07); border: none;
  color: var(--muted); font-size: 1rem; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.cookie-modal-close:hover { background: rgba(255,107,53,0.2); color: var(--orange); }
.cookie-modal-icon { font-size: 2.8rem; text-align: center; margin-bottom: .8rem; }
.cookie-modal h3 {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.25rem; color: var(--white);
  text-align: center; margin-bottom: 1rem;
}
.cookie-modal-intro {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 1.3rem; text-align: center;
}

/* Tabuľka typov cookies */
.cookie-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden; margin-bottom: 1.2rem;
}
.cookie-row {
  display: grid; grid-template-columns: 1.1fr 2.2fr 1fr;
  gap: .5rem; padding: .7rem 1rem;
  font-size: .82rem; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row-head {
  background: rgba(255,107,53,0.1);
  font-size: .75rem; font-weight: 800;
  color: var(--orange); letter-spacing: .5px; text-transform: uppercase;
}
.cookie-row strong { color: var(--text); }

.cookie-modal-note {
  font-size: .82rem; color: var(--muted); line-height: 1.6;
  margin-bottom: .6rem;
}
.cookie-modal-note a { color: var(--orange); }
.cookie-modal-note a:hover { text-decoration: underline; }
.cookie-modal .btn-cookie-accept {
  width: 100%; justify-content: center;
  margin-top: 1.3rem; font-size: 1rem; padding: .8rem;
  border-radius: 12px; display: block; text-align: center;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .cookie-bar { padding: 1rem; }
  .cookie-inner { gap: 1rem; }
  .cookie-text { gap: .7rem; }
  .cookie-text p { font-size: .8rem; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .cookie-modal { padding: 1.8rem 1.3rem; }
  .cookie-row { grid-template-columns: 1fr 1.8fr .8fr; font-size: .78rem; }
}

/* ══════════════════════════════
   CAPTCHA
══════════════════════════════ */
.captcha-group { margin-top: .4rem; }

.captcha-question {
  font-family: 'Bebas Neue', monospace;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 1px;
  background: rgba(255,107,53,0.1);
  padding: .15rem .6rem;
  border-radius: 8px;
  border: 1px solid rgba(255,107,53,0.3);
}

.captcha-group input {
  max-width: 140px;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 2px;
}

.captcha-hint {
  display: block;
  font-size: .82rem;
  margin-top: .35rem;
  min-height: 1.1rem;
  font-weight: 700;
}
