  :root{
      --bg: #0b0f17;
      --text: #ffffff;
      --muted: rgba(255,255,255,.75);
      --overlay: rgba(0,0,0,.55);
      --accent: #f36a22;
      --accent-hover: #e85f1b;

      /* Vymen za svoj obrázok: url('img/hero.jpg') */
      --hero-bg: linear-gradient(135deg, #1b2a3a 0%, #101826 60%, #0b0f17 100%);
    }


    *{ box-sizing: border-box; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
      color:#111;
      background:#fff;
    }
    a{ color: inherit; text-decoration: none; }
    .container{
      width: min(1100px, calc(100% - 40px));
      margin: 0 auto;
    }

    /* HERO */
    .hero{
      position: relative;
      /*min-height: 78vh;*/
      display: flex;
      align-items: center;
      color: var(--text);
      background: var(--hero-bg);
      overflow: hidden;
    }
    /* Ak chceš reálny obrázok: odkomentuj a nastav url v --hero-bg ako image a zmaž gradient */
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background: var(--hero-bg);
      transform: scale(1.05);
      filter: saturate(1.1) contrast(1.05);
    }
    .hero::after{
/*      content:"";
      position:absolute; inset:0;
      background: var(--overlay);*/
    }

    .hero-inner{
      position: relative;
      width: 100%;
      padding: 0px 0 42px;
    }

    /* NAV */
    .nav{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
    }
    .brand {
        font-weight: 700;
        letter-spacing: .9px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        margin: 0px 0px 0px 15px;
    }
    .brand-dot{
      width:10px; height:10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(243,106,34,.15);
    }

    .nav-links{
      display:flex;
      gap: 18px;
      align-items:center;
      color: rgba(255,255,255,.92);
      font-size: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-links a{
      opacity: .9;
      padding: 8px 6px;
      border-radius: 10px;
    }
    .nav-links a:hover{
      opacity: 1;
      background: rgba(255,255,255,.08);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border: 1px solid rgba(255,255,255,.22);
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
      background: transparent;
      color: var(--text);
    }
    .btn:hover{
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.06);
    }

    /* HERO CONTENT */
    .hero-content{
      padding: 52px 0 22px;
      text-align: center;
    }
    .hero h1{
      margin: 0 auto 14px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.05;
      font-weight: 900;
      max-width: 720px;
      letter-spacing: -.5px;
    }
    .hero p{
      margin: 0 auto 22px;
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1.6;
    }
    .cta{
      display:flex;
      gap: 12px;
      justify-content:center;
      align-items:center;
      flex-wrap: wrap;
      margin-top: 18px;
    }
    .btn-accent{
      background: var(--accent);
      border-color: transparent;
      color: #fff;
      padding: 12px 18px;
      border-radius: 10px;
      box-shadow: 0 10px 26px rgba(243,106,34,.25);
    }
    .btn-accent:hover{
      background: var(--accent-hover);
    }

    /* small scroll indicator */
    .scroll-hint{
      margin-top: 38px;
      display:flex;
      justify-content:center;
      opacity: .85;
    }
    .mouse{
      width: 26px;
      height: 42px;
      border: 2px solid rgba(255,255,255,.45);
      border-radius: 999px;
      position: relative;
    }
    .mouse::after{
      content:"";
      width: 4px;
      height: 8px;
      border-radius: 99px;
      background: rgba(255,255,255,.65);
      position: absolute;
      left: 50%;
      top: 8px;
      transform: translateX(-50%);
      animation: wheel 1.4s infinite;
    }
    @keyframes wheel{
      0%{ transform: translateX(-50%) translateY(0); opacity: .9; }
      70%{ transform: translateX(-50%) translateY(12px); opacity: .2; }
      100%{ opacity: 0; }
    }

    /* SERVICES */
    .section{
      padding: 58px 0;
      background: #fff;
    }
    .section-title{
      text-align:center;
      margin-bottom: 26px;
    }
    .section-title h2{
      margin: 0;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -.2px;
      color:#111827;
    }
    .section-title p{
      margin: 8px auto 0;
      max-width: 520px;
      color:#6b7280;
      font-size: 14px;
      line-height: 1.6;
    }

    .grid{
  display:flex !important;
  flex-wrap:wrap;
  justify-content:center;  /* CENTRUJE posledný riadok */
  gap:28px;    }

    .card{
      text-align:center;
      padding: 18px 10px 10px;
    }

    .icon{
      width: 64px;
      height: 64px;
      margin: 0 auto 12px;
      display:grid;
      place-items:center;
      color: var(--accent);
    }
    .card h3{
      margin: 6px 0 8px;
      font-size: 15px;
      font-weight: 800;
      color:#111827;
    }
    .card p{
      margin: 0 auto;
      max-width: 280px;
      color:#6b7280;
      font-size: 13px;
      line-height: 1.6;
    }

/* ============ Contact Form 7 - Slide style ============ */

/* wrapper */
.wpcf7 {
  width: 100%;
}

/* vyhod default p spacing a urob konzistentný layout */
.wpcf7 form.wpcf7-form p {
  margin: 0 0 14px;
}

/* labels */
.wpcf7 form.wpcf7-form label {
  display: block;
  font-weight: 650;
  font-size: 14px;
  color: #111827;
  margin-bottom: 6px;
}

/* inputs / textarea / quiz */
.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-email,
.wpcf7 .wpcf7-form-control.wpcf7-textarea,
.wpcf7 .wpcf7-form-control.wpcf7-quiz {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #111827;

  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;

  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

/* textarea height + resize */
.wpcf7 .wpcf7-form-control.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

/* focus style (oranžový akcent ako CTA) */
.wpcf7 .wpcf7-form-control:focus {
  border-color: rgba(243,106,34,.65);
  box-shadow: 0 0 0 4px rgba(243,106,34,.18);
}

/* hover jemne */
.wpcf7 .wpcf7-form-control:hover {
  border-color: #d1d5db;
}

/* quiz label */
.wpcf7 .wpcf7-quiz-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 8px;
}

/* submit button */
.wpcf7 .wpcf7-submit {
  appearance: none;
  border: 0;
  cursor: pointer;

  background: #f36a22;          /* tvoj accent */
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;

  padding: 12px 18px;
  border-radius: 12px;

  box-shadow: 0 10px 26px rgba(243,106,34,.25);
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}

.wpcf7 .wpcf7-submit:hover {
  background: #e85f1b;
  box-shadow: 0 12px 30px rgba(243,106,34,.28);
}

.wpcf7 .wpcf7-submit:active {
  transform: translateY(1px);
}

/* spinner – nech nie je divný */
.wpcf7 .wpcf7-spinner {
  margin-left: 10px;
}

/* errors pod inputom */
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
  color: #b91c1c;
}

/* success / error box dole */
.wpcf7 .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
}

/* CF7 používa triedy podla stavu */
.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #166534;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

/* accessibility screen-reader block – skryt vizuálne */
.wpcf7 .screen-reader-response {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile: trochu väcšie inputy */
@media (max-width: 560px) {
  .wpcf7 .wpcf7-form-control.wpcf7-text,
  .wpcf7 .wpcf7-form-control.wpcf7-email,
  .wpcf7 .wpcf7-form-control.wpcf7-textarea,
  .wpcf7 .wpcf7-form-control.wpcf7-quiz {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .wpcf7 .wpcf7-submit {
    width: 100%;
    padding: 13px 18px;
    border-radius: 14px;
  }
}

    /* Responsive */
    @media (max-width: 980px){
      .nav-links{ display:none; } /* jednoduché – nav schováme */
      .hero-content{ text-align:left; }
      .hero h1, .hero p{ margin-left: 0; margin-right: 0; }
      .cta{ justify-content:flex-start; }
    }
    @media (max-width: 860px){
      .grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px){
      .grid{ grid-template-columns: 1fr; }
      .hero
       { 
          min-height: 30svh; 
       }

      .brand {
          margin: 0px 0px 0px 10px;
       }

      .hero-content{
          margin: 0px 0px 0px 10px;
      }
    }

