/* Striekame – základný dizajnový systém (v1) */

:root{
  --container: 1200px;
  --pad: 20px;

  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;

  --primary: #f97316; /* oranžová */
  --primary-hover: #ea580c;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .10);

  --header-h: 72px;
}

*{box-sizing:border-box;}

html,body{height:100%;}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

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

a{color:inherit; text-decoration:none;}

.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.page{padding-top: var(--header-h);}

/* Header */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--header-h);
  background:rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:1000;
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{display:flex; align-items:center; gap:12px; min-width: 180px;}

.brand-logo{height:34px; width:auto;}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex:1;
  justify-content:center;
}

.nav-link{
  font-weight:600;
  color:#334155;
  padding:10px 6px;
  border-radius:10px;
}

.nav-link:hover{background:#f8fafc; color:#0f172a;}

.caret{font-size:12px; margin-left:6px;}

.nav-item{position:relative;}

.has-dropdown:hover .dropdown{opacity:1; visibility:visible; transform: translateY(0);}

.dropdown{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  min-width: 320px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.dropdown-link{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:#0f172a;
  font-weight:600;
}

.dropdown-link:hover{background:#f8fafc;}

.header-cta{display:flex; align-items:center; gap:18px;}

.burger{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.burger span{
  display:block;
  width:24px;
  height:2px;
  background:#334155;
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease;
}

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

.burger.is-open span:nth-child(2){
  opacity:0;
}

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

.mobile-menu{
  display:none;
}

.phone{display:flex; align-items:center; gap:10px; color:#334155; font-weight:700;}

.phone-ico{opacity:.8;}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  cursor: pointer;
}

.btn-primary{
  background: linear-gradient(to right, #f97816, #fa9a1f);
  color: #fff;
  font-weight: 600;
  border: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.btn-primary:hover{
  transform: scale(1.04);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  filter: brightness(1.02);
}

.btn-outline{
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}

.btn-outline:hover{
  background: rgba(255,255,255,0.08);
}

.section{
  padding: 50px 0;
  background: #f6f7f9;
}


/* ===================================== OVERLAY - FORM ================================================ */

.offer-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.offer-overlay.is-open {
  display: block;
}

.offer-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.offer-overlay-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}

.offer-overlay-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

/* ===================================== HOME - HERO ================================================ */

.hero{
  position: relative;
  height: 80vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;

  background:
    linear-gradient(
      135deg,
      rgba(1, 102, 155, 0.85),
      rgba(3, 92, 139, 0.78)
    ),
    url('../img/hero.jpg') center/cover no-repeat;
}

.hero-inner{
  width: 100%;
}

.hero-content{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-title{
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-title .accent{
  color: #fa9a1f; /* tvoja oranžová */
}

.hero-subtitle{
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 780px;
  opacity: 0.95;
}

.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats{
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.hero-stat{
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}

.hero-stat-num{
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hero-stat-label{
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.92;
}



/* =============================================== HOME - SECTIONS (base) =========================================== */

.section-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.section-eyebrow{
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fa9a1f;
  margin-bottom: 10px;
}

.section-head h2{
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 800;
  color: #0f172a;
}

.section-head p{
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* ============================================= HOME - SLUŽBY =================================================== */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.service-media{
  position: relative;
  height: 290px;
  background: #e2e8f0;
}

.service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-tags{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #f97816, #fa9a1f);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.service-body{
  padding: 22px 22px 24px;
}

.service-body h3{
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.service-body p{
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.7;
  font-size: 15px;
}

/* CTA button in card */

.btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f6f7f9;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: #94a3b8;
  box-shadow: 0 10px 22px rgba(15,23,42,.10);
}

.btn-ghost .arrow{
  font-size: 16px;
  line-height: 1;
}


/* ================================================ HOME - SPOLUPRACA ============================================= */

.process{
  background: #0e7aa3;
  color: #fff;
  position: relative;
}

.section-head-light h2{
  color: #fff;
}

.section-head-light .section-eyebrow{
  color: #fa9a1f;
}

.section-head-light .section-subtitle-light{
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-grid::before{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 45px;              /* polovica z 90px kruhu */
  height: 2px;
  background: rgba(255,255,255,0.22);
  z-index: 0;
}

.process-item{
  text-align: center;
  position: relative;
}

.process-icon{
  position: relative;
  z-index: 1;

  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(to right, #f97816, #fa9a1f);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.process-item h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.process-item p{
  margin: 0 auto;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}


/* ================================================== HOME - VYHODY =============================================== */

.benefits{
  background: #0a5874; /* tmavšia modrá ako proces, bližšie k screenshotu */
  color: #fff;
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.benefit-card{
  border-radius: 18px;
  padding: 26px 26px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.benefit-card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.16);
}

.benefit-icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

  background: linear-gradient(to right, #f97816, #fa9a1f);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 26px rgba(0,0,0,0.20);
}

.benefit-icon svg{
  width: 30px;
  height: 30px;
  stroke: #fff;
}

.benefit-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.benefit-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}


/* ============================================ HOME - REALIZACIE ========================================== */

.realizacie{
  background:#f6f7f9;
}

.realizacie-filters{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:24px;
}

.filter{
  appearance:none;
  border:0;
  cursor:pointer;
  padding:12px 16px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  line-height:1;

  background:#fff;
  color:#0f172a;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.filter:hover{
  transform: translateY(-1px);
}

.filter-active{
  background: linear-gradient(to right, #f97816, #fa9a1f);
  color:#fff;
}

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

.real-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  cursor: default;

  background: #fff;
  border: 1px solid rgba(15,23,42,.15);
  box-shadow: 0 18px 40px rgba(15,23,42,.15);
  transition: transform .18s ease, box-shadow .18s ease;
}

.real-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(15,23,42,.16);
}

.real-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0));
  z-index: 2; /* nad img, pod overlay */
}

.real-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
  position: relative;
  z-index: 1;
}

.real-card:hover img{
  transform:scale(1.05);
}

/* play icon */

.play-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#0a5874;
  transition:transform .3s ease;
  cursor: pointer;
  z-index: 3;
}

.real-card:hover .play-icon{
  transform:translate(-50%,-50%) scale(1.1);
}

/* overlay */

.real-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:#fff;
  padding:22px 24px;
  z-index: 4;

  /* collapsed state */
  transform: translateY(62px);
  transition: transform .35s ease;

  /* aby nič neodsekávalo */
  border-top-left-radius:18px;
  border-top-right-radius:18px;
}

.real-card:hover .real-overlay{
  transform: translateY(0);
}

.real-meta{
  font-size:13px;
  color:#0a6b9f;
  margin-bottom:6px;
}

.real-overlay h3{
  font-size:18px;
  margin:0 0 14px;
  color:#111827;
  line-height:1.25;
}

.btn-real{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;

  background:#f6f7f9;       /* rovnaké ako sekcia */
  color:#0f172a;
  border:1px solid #d7dee8;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}

.btn-real:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* ============================================== HOME - BLOG ================================================= */

.blog-preview{
  background:#e8eaee;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  margin-top:60px;
}

.blog-card{
  background:#f6f7f9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 20px 50px rgba(15,23,42,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover{
  transform: translateY(-4px);
  box-shadow:0 30px 70px rgba(15,23,42,.14);
}

.blog-thumb{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  filter: contrast(1.12) saturate(1.12);
}

.blog-content{
  padding:26px 26px 30px;
}

.blog-meta{
  font-size:13px;
  color:#64748b;
  margin-bottom:10px;
}

.blog-card h3{
  font-size:20px;
  line-height:1.3;
  margin:0 0 14px;
  color:#0f172a;
}

.blog-card p{
  font-size:15px;
  line-height:1.7;
  color:#475569;
  margin-bottom:18px;
}

.blog-link{
  font-weight:700;
  font-size:14px;
  color:#0a5874;
  text-decoration:none;
  transition: color .2s ease;
}

.blog-link:hover{
  color:#f97816;
}


/* ======================================================= HOME - TEAM ============================================== */

.team{
  background:#f6f7f9;
}

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

.team-card{
  background:#e8eaee;
  border-radius:18px;
  padding:34px 28px 26px;
  text-align:center;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 29px rgba(15,23,42,.10);
}

.team-photo{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin:0 auto 18px;
  border:1px solid #fa9a1f;
}

.team-card h3{
  margin:0 0 6px;
  font-size:20px;
  font-weight:900;
  color:#0f172a;
}

.team-role{
  font-size:14px;
  font-weight:800;
  color:#f97816;
  margin-bottom:18px;
}

.team-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  margin-bottom:16px;
}

.team-row{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  color:#334155;
  font-size:14px;
}

.team-row a{
  color:#334155;
  text-decoration:none;
}

.team-row a:hover{
  text-decoration:underline;
}

.team-ico{
  width:26px;
  height:26px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f6f7f9;
  color:#0a5874;
  font-size:13px;
}

.team-hours{
  margin-top:14px;
  font-size:13px;
  font-weight:700;
  color:#475569;
}


/* ===================================================== HOME- RECENZIE =============================================== */

.testimonials{
  background:#e8eaee;
}

.testimonial-card{
  background:#f6f7f9;
  border-radius:22px;
  padding:25px 25px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow: 0 12px 29px rgba(15,23,42,.10);
  position:relative;
}

.testimonial-stars{
  color:#fa9a1f;
  font-size:29px;
  letter-spacing:4px;
  margin-bottom:18px;
}

.testimonial-text{
  font-size:15px;
  line-height:1.6;
  color:#475569;
  margin-bottom:28px;
}

.testimonial-author{
  font-weight:800;
  font-size:16px;
  color:#0f172a;
}

.testimonial-quote{
  position:absolute;
  top:18px;
  right:12px;
  width:52px;
  height:52px;
  color: rgba(250,154,31,.35);
}

.testimonial-quote svg{
  transform: rotate(180deg);
  transform-origin: center;
  width:100%;
  height:100%;
}

/* Swiper pagination (dots) */

.testimonials .testimonial-dots{
  position: relative;
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonials .testimonial-dots .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 1;              /* zruší defaultné “vyblednutie” */
  background: rgba(0,0,0,.12);
}

.testimonials .testimonial-dots .swiper-pagination-bullet-active{
  background: rgba(250,154,31,.85); /* tvoja oranžová */
  transform: scale(1.35);
}

/* ==================================================== HOME - KONTAKT ================================================== */

.section-contact-offer{
  background: #f6f7f9; /* podľa tvojho striedania */
}

.section-head-center{
  text-align: center;
  margin-bottom: 18px;
}

.section-head-center .section-eyebrow{
  color: #fa9a1f;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 12px;
}

.contact-offer-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: start;
}

.contact-title{
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  color: #0b1220;
}

.contact-lead{
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}

.contact-items{
  margin-top: 26px;
  display: grid;
  gap: 16px;
  max-width: 420px;
}

.contact-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(250,154,31,.14);
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}

.contact-ico img{
  width: 25px;
  height: 25px;
  display: block;
}

.contact-label{
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-value{
  font-size: 16px;
  font-weight: 700;
  color: #0b1220;
}

/* Form card */

.form-card{
  background: #e8eaee;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.offer-form .form-row{
  margin-bottom: 16px;
}

.offer-form .form-row-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer-form label{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #0b1220;
  font-weight: 600;
}

.offer-form .req{
  color: #fa9a1f;
  font-weight: 700;
}

.offer-form input,
.offer-form select,
.offer-form textarea{
  width: 100%;
  background: #f6f7f9;  /* požadované */
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  color: #0b1220;
}

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

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus{
  border-color: rgba(250,154,31,.55);
  box-shadow: 0 0 0 4px rgba(250,154,31,.18);
}

.form-actions{
  margin-top: 8px;
  text-align: center;
}

.btn-block{
  width: 100%;
}

.form-note{
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
}


/* ===================================================== FOOTER ======================================================= */

.site-footer{
  background:#0f4f63; /* tmavomodrá lovable */
  color:rgba(255,255,255,.85);
  padding:50px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:50px;
}

.footer-logo img{
  height:40px;
  margin-bottom:16px;
}

.footer-text{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.75);
  max-width:340px;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:18px;
  color:#fff;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  transition:.2s ease;
}

.footer-col ul li a:hover{
  color:#fa9a1f;
}

.footer-contact-item{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}

.footer-contact-item img{
  width:21px;
  height:21px;
  opacity:.8;
}

.footer-social{
  margin-top:18px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}

.footer-social a:hover{
  background:#fa9a1f;
}

.footer-social img{
  width:21px;
  height:21px;
}

.footer-bottom{
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:13px;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-legal{
  display:flex;
  gap:20px;
}

.footer-legal a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
}

.footer-legal a:hover{
  color:#fa9a1f;
}


/* ===================================================== BLOG DETAIL ================================================== */

.blog-detail{
  background:#e8eaee;
}

.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin: 10px 0 22px;
  font-size:13px;
  color:#64748b;
}

.breadcrumb a{
  color:#0a5874;
  font-weight:700;
  text-decoration:none;
}

.breadcrumb a:hover{
  text-decoration:underline;
}

.breadcrumb-sep{
  opacity:.6;
}

.blog-article{
  background:#f6f7f9;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(15,23,42,.10);
  overflow:hidden;
}

.blog-article-head{
  padding: 28px 28px 0;
}

.blog-article-meta{
  font-size:13px;
  color:#64748b;
  margin-bottom:10px;
}

.blog-article-title{
  margin:0 0 14px;
  font-size:38px;
  line-height:1.12;
  color:#0f172a;
  letter-spacing:-.3px;
}

.blog-article-thumb{
  margin-top: 18px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
}

.blog-article-thumb img{
  width:100%;
  height:auto;
  display:block;
}

.blog-article-content{
  padding: 24px 28px 6px;
  color:#334155;
  font-size:16px;
  line-height:1.85;
}

.blog-article-content h2{
  margin: 26px 0 10px;
  font-size:26px;
  line-height:1.25;
  color:#0f172a;
}

.blog-article-content h3{
  margin: 22px 0 8px;
  font-size:20px;
  line-height:1.3;
  color:#0f172a;
}

.blog-article-content h4{
  margin: 16px 0 8px;
  font-size:18px;
  line-height:1.3;
  color:#0f172a;
}

.blog-article-content p{
  margin: 0 0 16px;
}

.blog-article-content ul,
.blog-article-content ol{
  margin: 0 0 18px;
  padding-left: 20px;
}

.blog-article-content li{
  margin: 0;
}

.blog-article-content a{
  color:#0a5874;
  font-weight:700;
  text-decoration:none;
}

.blog-article-content a:hover{
  text-decoration:underline;
}

.blog-article-footer{
  padding: 22px 28px 28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* ======================================================= BLOG ============================================== */

.section.blog-page{
  background:#e8eaee;
}

.blog-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:24px;
}

.blog-item{
  background:#f6f7f9;
  border-radius:16px;
  padding:18px;
  display:flex;
  gap:18px;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.blog-item:hover{
  transform: translateY(-4px);
  box-shadow:0 30px 70px rgba(15,23,42,.14);
}

.blog-item__thumb{
  flex:0 0 140px;
  height:140px;
  border-radius:14px;
  overflow:hidden;
  display:block;
  background:#e8eaee;
}

.blog-item__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-item__thumb--empty{
  width:100%;
  height:100%;
}

.blog-item__body{
  flex:1;
  min-width:0;
}

.blog-item__meta{
  font-size:14px;
  color:rgba(51,65,85,.75);
  margin-bottom:6px;
}

.blog-item__title{
  margin:0 0 8px 0;
  font-size:22px;
  line-height:1.2;
}

.blog-item__title a{
  color:#0f172a;
  text-decoration:none;
}

.blog-item__title a:hover{
  text-decoration:underline;
}

.blog-item__excerpt{
  margin:0 0 12px 0;
  color:#334155;
  line-height:1.6;
}

.blog-item__more{
  display:inline-block;
  color:#0a5874;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition: color .2s ease;
}

.blog-item__more:hover{
  color:#f97816;
}

.blog-empty{
  background:#f6f7f9;
  border-radius:16px;
  padding:20px;
  color:#334155;
}

/* PAGINATION */

.pagination{
  margin-top:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.pagination__btn{
  background:#f6f7f9;
  border-radius:999px;
  padding:10px 14px;
  text-decoration:none;
  color:#0f172a;
  box-shadow:0 8px 20px rgba(15,23,42,.07);
}

.pagination__btn.is-disabled{
  opacity:.45;
  pointer-events:none;
}

.pagination__pages{
  display:flex;
  align-items:center;
  gap:8px;
}

.pagination__page{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#f6f7f9;
  color:#0f172a;
  box-shadow:0 8px 20px rgba(15,23,42,.07);
}

.pagination__page.is-active{
  background:#f59e0b;
  color:#0f172a;
  font-weight:800;
}

.pagination__dots{
  color:rgba(51,65,85,.7);
  padding:0 4px;
}


/* =========================================================  O NÁS   =================================================== */

.aboutp .aboutp-bg-1{ background:#f6f7f9; }

.aboutp .aboutp-bg-2{ background:#e8eaee; }

.aboutp .aboutp-bg-3{ background:#0a5874; }

.aboutp .aboutp-bg-4{ background:#0e7aa3; }

/* Head (eyebrow + nadpis + popis) – vizuál ako home, ale vlastné triedy */

.aboutp .aboutp-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 28px;
}

.aboutp .aboutp-eyebrow{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#ff8a00;
  margin:0 0 10px;
}

.aboutp .aboutp-h2{
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 800;
  color: #000;
}

.aboutp .aboutp-sub{
  margin:0;
  opacity:.85;
  line-height:1.6;
}

.aboutp .white{
  color: #fff;
}

.aboutp .aboutp-title{ margin:0 0 16px; }

/* Intro layout */

.aboutp .aboutp-intro{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:start;
}

.aboutp .aboutp-copy{ text-align:left; }


.aboutp .aboutp-text{ text-align:justify; }

.aboutp .aboutp-text p{ margin:0; }

.aboutp .aboutp-text p + p{ margin-top:16px; }

/* Stats – decentné boxy */

.aboutp .aboutp-stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:22px;
}

.aboutp .aboutp-stat{
  background:#e8eaee;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:14px 18px;
  min-width:160px;
}

.aboutp .aboutp-statNum{
  font-size:28px;
  font-weight:800;
  line-height:1;
}

.aboutp .aboutp-statLabel{
  margin-top:6px;
  font-size:14px;
  opacity:.75;
}

/* Photos */

.aboutp .aboutp-photoGrid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:14px;
}

.aboutp .aboutp-photo{
  margin:0;
  overflow:hidden;
  border-radius:18px;
  background:#e8eaee;
  border:1px solid rgba(15,23,42,.10);
}

.aboutp .aboutp-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.aboutp .aboutp-photo.p1{ aspect-ratio:4/3; }

.aboutp .aboutp-photo.p2{ aspect-ratio:1/1; }

.aboutp .aboutp-photo.p3{ aspect-ratio:1/1; }

.aboutp .aboutp-photo.p4{ aspect-ratio:4/3; }

/* Cards */

.aboutp .aboutp-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

.aboutp .aboutp-cards3{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.aboutp .aboutp-card{
  border-radius:18px;
  padding:22px;
  background: #f6f7f9;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.aboutp .transparent{
  background: rgba(255,255,255,0.06);
}

.aboutp .aboutp-icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background: linear-gradient(to right, #f97816, #fa9a1f);
  box-shadow: 0 12px 26px rgba(0,0,0,0.20);
}

.aboutp .aboutp-icon img{
  width:28px;
  height:28px;
  display:block;
}

.aboutp .aboutp-card h3{ margin:0 0 10px; font-size:18px; }

.aboutp .aboutp-card p{ margin:0; line-height:1.65; opacity:.85; }

/* Steps (viditeľná a vycentrovaná čiara) */

.aboutp .aboutp-steps{
  position:relative;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:40px;
  text-align:center;
  padding-top:8px;
}

.aboutp .aboutp-steps::before{
  content:"";
  position:absolute;
  left:12.5%;
  right:12.5%;
  top: calc(8px + (72px / 2)); /* padding-top + polovica kruhu = stred */
  height:2px;
  background: rgba(15,23,42,.18);
  z-index:0;
}

.aboutp .aboutp-stepNum{
  position:relative;
  z-index:1;
  width:72px;
  height:72px;
  border-radius:999px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  background: linear-gradient(to right, #f97816, #fa9a1f);
  color:#0f172a;
  font-weight:900;
  font-size:18px;
  color:#fff;
}

.aboutp .aboutp-step h3{ margin:0 0 8px; font-size:18px; }

.aboutp .aboutp-step p{ margin:0; line-height:1.6; opacity:.85; }

/* Ukážky prác */

.aboutp .aboutp-work{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

.aboutp .aboutp-workCard{
  background:#e8eaee;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.aboutp .aboutp-workThumb{
  aspect-ratio: 4/3;
  background: rgba(15,23,42,.08);
}

.aboutp .aboutp-workMeta{ padding:16px; }

.aboutp .aboutp-workTitle{ font-weight:900; margin-bottom:6px; text-align:center; }

.aboutp-workThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Contacts */

.aboutp .aboutp-contacts{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

.aboutp .aboutp-contact{
  background:#f6f7f9;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:22px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  text-align:center;
}

.aboutp .aboutp-avatar{
  width:110px;
  height:110px;
  border-radius:999px;
  overflow:hidden;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,138,0,.55);
  background:#e8eaee;
}

.aboutp .aboutp-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.aboutp .aboutp-role{
  color:#ff8a00;
  font-weight:800;
  margin-bottom:12px;
}

.aboutp .aboutp-lines{
  display:grid;
  gap:8px;
  justify-items:center;
  margin-bottom:12px;
}

.aboutp .aboutp-lines a{ text-decoration:none; }

.aboutp .aboutp-hours{
  opacity:.75;
  font-weight:700;
  font-size:13px;
}


/* =========================================================  REALIZÁCIE   =================================================== */

.real-loadmore{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.real-loadmoreBtn{
  min-width:260px;
}

.real-loadmoreBtn[disabled]{
  opacity:.7;
  cursor:default;
  transform:none;
}

/* =========================================================  KONTAKT  =================================================== */

.contactp-bg-1{
  background:#f6f7f9;
}

.contactp-bg-2{
  background:#e8eaee;
}

.contactp-infoGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:28px;
}

.contactp-infoCard{
  background:#f6f7f9;
  border-radius:18px;
  padding:32px 28px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.contactp-infoCard h2{
  margin:0 0 22px;
  font-size:30px;
  line-height:1.15;
  color:#0f172a;
}

.contactp-infoList{
  display:grid;
  gap:16px;
  font-size:17px;
  line-height:1.65;
  color:#475569;
}

.contactp-infoList strong{
  color:#0f172a;
}

.contactp-note{
  margin:24px 0 0;
  font-size:15px;
  line-height:1.7;
  color:#64748b;
}

.contactp-box{
  margin-top:28px;
  padding:16px 18px;
  border-radius:12px;
  background:#e8eaee;
  color:#475569;
  font-size:16px;
  line-height:1.6;
}

.contactp-box a{
  color:#0a5874;
  font-weight:700;
  text-decoration:none;
}

.contactp-box a:hover{
  text-decoration:underline;
}

.contactp-faqCard{
  background:#e8eaee;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  overflow:hidden;
}

.contactp-faqItem{
  border-bottom:1px solid rgba(15,23,42,.08);
}

.contactp-faqItem:last-child{
  border-bottom:0;
}

.contactp-faqItem summary{
  list-style:none;
  cursor:pointer;
  padding:22px 26px;
  font-size:19px;
  font-weight:800;
  line-height:1.4;
  color:#0f172a;
  position:relative;
}

.contactp-faqItem summary::-webkit-details-marker{
  display:none;
}

.contactp-faqItem summary::after{
  content:"+";
  position:absolute;
  right:26px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
  line-height:1;
  color:#f97816;
}

.contactp-faqItem[open] summary::after{
  content:"−";
}

.contactp-faqAnswer{
  padding:0 26px 22px;
  font-size:16px;
  line-height:1.75;
  color:#475569;
}

/* ===================================================== SLUŽBY ======================================================= */

.servicep-overview{
  background:#f6f7f9;
}

.servicep-overviewGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
  align-items:start;
}

.servicep-overviewCard{
  background:#e8eaee;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.servicep-overviewThumb{
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
}

.servicep-overviewThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.servicep-overviewCard:hover .servicep-overviewThumb img{
  transform:scale(1.04);
}

.servicep-overviewBody{
  padding:20px 18px 18px;
}

.servicep-overviewBody h2{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.18;
}

.servicep-overviewBody h2 a{
  color:#0a6b9f;
  text-decoration:none;
}

.servicep-overviewBody h2 a:hover{
  text-decoration:underline;
}

.servicep-overviewBody p{
  margin:0 0 16px;
  color:#475569;
  line-height:1.75;
}

.servicep-overviewLink{
  color:#0a6b9f;
  font-weight:700;
  text-decoration:none;
}

.servicep-overviewLink:hover{
  text-decoration:underline;
}

/* detail */

.servicep-detail{
  background:#f6f7f9;
}

.servicep-layout{
  display:grid;
  grid-template-columns:minmax(280px, 360px) minmax(0, 1fr);
  gap:42px;
  align-items:start;
}

.servicep-sidebar{
  position: sticky;
  top: 96px;
  align-self: start;
}

.servicep-sticky{
  position: static;
}

.servicep-formCard{
  padding:24px;
}

.servicep-formTitle{
  font-size:30px;
  line-height:1.1;
  font-weight:800;
  color:#0a6b9f;
  margin:0 0 26px;
}

.offer-form .servicep-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  line-height:1.5;
  color:#64748b;
}

.servicep-consent input{
  margin-top:2px;
}

.servicep-main{
  min-width:0;
}

.servicep-hero{
  border-radius:18px;
  overflow:hidden;
  margin-bottom:28px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.servicep-hero img{
  width:100%;
  height:auto;
  display:block;
}

.servicep-head{
  margin-bottom:20px;
  text-align:center;
}

.servicep-eyebrow{
  display:block;
  margin:0 0 10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#f97816;
}

.servicep-title{
  margin:0;
  font-size:28px;
  line-height:1.12;
  color:#0f172a;
}

.servicep-sub{
  margin:14px 0 0;
  font-size:17px;
  line-height:1.7;
  color:#475569;
}

.servicep-financeBox{
  margin-bottom:26px;
  padding:24px 26px;
  border-radius:16px;
  background:#e8eaee;
  border:1px solid rgba(15,23,42,.08);
}

.servicep-financeTitle{
  font-size:18px;
  font-weight:800;
  color:#596389;
  margin-bottom:14px;
}

.servicep-financeBox p{
  margin:0;
  color:#596389;
  line-height:1.8;
}

.servicep-content{
  color:#475569;
  font-size:17px;
  line-height:1.9;
}

.servicep-content p{
  margin:0 0 20px;
}

.servicep-content ul{
  margin:0 0 20px;
  padding-left:24px;
}

.servicep-content li{
  margin:0 0 10px;
}

.servicep-video{
  margin-top:28px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.servicep-video iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  display:block;
}



/* ===================================== OFFER SENT ================================================ */

.offer-sent-page{
  background:#e8eaee;
  min-height:calc(100vh - 400px);
}

.offer-sent-page .container{
  width:100%;
}

.offer-sent-card{
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  transition:none;
}

.offer-sent-card:hover{
  transform:none;
}

.offer-sent-card.is-success{
  background:
    linear-gradient(180deg, rgba(14,122,163,.08), rgba(14,122,163,0) 120px),
    #ffffff;
}

.offer-sent-card.is-error{
  background:
    linear-gradient(180deg, rgba(249,120,22,.10), rgba(249,120,22,0) 120px),
    #ffffff;
}

.offer-sent-body{
  padding:34px 34px 30px;
}


.offer-sent-title{
  margin:0 0 16px;
  max-width:760px;
  font-size:28px;
  line-height:1.12;
  font-weight:800;
  color:#0f172a;
}

.offer-sent-text{
  max-width:860px;
  color:#334155;
  font-size:18px;
  line-height:1.2;
}

.offer-sent-text p{
  margin:0 0 12px;
  font-size:18px;
}

.offer-sent-divider{
  height:1px;
  margin:22px 0 30px;
  background:rgba(15,23,42,.08);
}



.offer-sent-subtitle{
  margin:0 0 12px 10px;
  font-size:20px;
  line-height:1.2;
  font-weight:700;
  color:#0f172a;
}

.offer-sent-table{
  width:100%;
  margin-top:0;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  overflow:hidden;
}

.offer-sent-table th,
.offer-sent-table td{
  padding:5px 14px;
  text-align:left;
  vertical-align:top;
  font-size:15px;
  line-height:1.45;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.offer-sent-table tr:last-child th,
.offer-sent-table tr:last-child td{
  border-bottom:0;
}

.offer-sent-table th{
  width:210px;
  font-weight:700;
  color:#0f172a;
  background:transparent;
}

.offer-sent-table td{
  color:#334155;
  background:transparent;
}

.offer-sent-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.offer-sent-actions-between{
  justify-content:space-between;
}

.offer-sent-resend{
  margin:0;
}

.offer-sent-actions .btn-real,
.offer-sent-actions .btn-ghost{
  min-height:50px;
}

.offer-sent-debug{
  margin-top:20px;
}

.offer-sent-debug pre{
  margin:0;
  padding:14px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  overflow:auto;
  font-size:13px;
  line-height:1.5;
  color:#334155;
}



























/* ============================================ RESPONSIVE ================================================= */

/* RESPONSIVE - GLOBAL / HEADER */

@media (max-width: 1024px){
  .header-inner{
    justify-content:space-between;
  }

  .brand{
    min-width:auto;
  }

  .nav{
    display:none;
  }

  .header-cta{
    display:none;
  }

  .burger{
    display:flex;
  }

  .mobile-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid var(--border);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
    z-index:1001;
  }

  .mobile-menu.is-open{
    display:block;
  }

  .mobile-menu-inner{
    padding:18px 20px 22px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .mobile-link{
    display:block;
    padding:12px 0;
    font-weight:700;
    color:#0f172a;
    border-bottom:1px solid #e2e8f0;
  }

  .mobile-services{
    border-bottom:1px solid #e2e8f0;
  }

  .mobile-services summary{
    list-style:none;
    cursor:pointer;
    padding:12px 0;
    font-weight:700;
    color:#0f172a;
    position:relative;
  }

  .mobile-services summary::-webkit-details-marker{
    display:none;
  }

  .mobile-services summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    line-height:1;
    color:#64748b;
  }

  .mobile-services[open] summary::after{
    content:"−";
  }

  .mobile-submenu{
    display:flex;
    flex-direction:column;
    gap:0;
    padding:0 0 8px 12px;
  }

  .mobile-sublink{
    display:block;
    padding:10px 0;
    color:#334155;
    font-weight:600;
  }

  .mobile-menu-cta{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding-top:14px;
  }

  .mobile-menu-cta .phone{
    font-weight:700;
  }

  .mobile-menu-cta .btn{
    width:100%;
  }
}


@media (max-width: 1024px){
  .section{ padding: 70px 0; }
}

@media (max-width: 640px){
  .section{ padding: 55px 0; }
}

/* ===================================== RESPONSIVE - HOME - HERO ================================================ */

@media (max-width: 768px){
  .hero{
    min-height: 620px;
  }
  .hero-title{
    font-size: 38px;
  }
  .hero-subtitle{
    font-size: 16px;
  }
  .hero-stats{
    gap: 14px;
  }
  .hero-stat{
    min-width: 140px;
  }
}

/* ============================================= RESPONSIVE - HOME - SLUŽBY =================================================== */

@media (max-width: 980px){
  .services-grid{
    grid-template-columns: 1fr;
  }
  .service-media{
    height: 240px;
  }
  .section-head h2{
    font-size: 34px;
  }
}

/* ================================================ RESPONSIVE - HOME - SPOLUPRACA ============================================= */

@media (max-width: 1100px){
  .process-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before{
    display: none;
  }
}

/* ================================================== RESPONSIVE - HOME - VYHODY =============================================== */

@media (max-width: 1100px){
  .benefits-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .benefits-grid{
    grid-template-columns: 1fr;
  }
}

/* ============================================ RESPONSIVE - HOME - REALIZACIE ========================================== */

@media (max-width: 980px){
  .realizacie-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .realizacie-grid{
    grid-template-columns: 1fr;
  }

  .real-card img{
    height: 260px;
  }

  .real-overlay{
    transform: translateY(0);
    position: static;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .play-icon{
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/* ============================================== RESPONSIVE - HOME - BLOG ================================================= */

@media (max-width: 1100px){
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 640px){
  .blog-grid{
    grid-template-columns:1fr;
  }
}

/* ======================================================= RESPONSIVE - HOME - TEAM ============================================== */

@media (max-width: 1100px){
  .team-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 640px){
  .team-grid{ grid-template-columns:1fr; }
}

/* ==================================================== RESPONSIVE - HOME - KONTAKT ================================================== */

@media (max-width: 980px){
  .contact-offer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-title{
    font-size: 34px;
  }
}

@media (max-width: 640px){
  .offer-form .form-row-2{
    grid-template-columns: 1fr;
  }
}

/* ===================================================== RESPONSIVE - FOOTER ======================================================= */

@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

@media (max-width: 640px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom-inner{
    flex-direction:column;
    gap:12px;
  }
}

/* ===================================================== RESPONSIVE - BLOG DETAIL ================================================== */

@media (max-width: 768px){
  .blog-article-head{ padding: 22px 18px 0; }
  .blog-article-content{ padding: 18px 18px 4px; }
  .blog-article-footer{ padding: 18px 18px 22px; }
  .blog-article-title{ font-size: 30px; }
}

/* ======================================================= RESPONSIVE - BLOG ============================================== */

@media (max-width: 680px){
  .blog-item{
    flex-direction:column;
  }
  .blog-item__thumb{
    flex:0 0 auto;
    width:100%;
    height:180px;
  }
  .blog-item__title{
    font-size:20px;
  }
}

/* =========================================================  RESPONSIVE - O NÁS   =================================================== */

@media (max-width: 980px){
  .aboutp .aboutp-intro{ grid-template-columns:1fr; }
  .aboutp .aboutp-cards{ grid-template-columns:1fr; }

  .aboutp .aboutp-steps{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:28px 20px;
    text-align:center;
  }

  .aboutp .aboutp-steps::before{ display:none; }
  .aboutp .aboutp-stepNum{ margin: 0 auto 12px; }

  .aboutp .aboutp-work{ grid-template-columns:1fr; }
  .aboutp .aboutp-contacts{ grid-template-columns:1fr; }
}

/* =========================================================  RESPONSIVE - KONTAKT  =================================================== */

@media (max-width: 980px){
  .contactp-infoGrid{
    grid-template-columns:1fr;
  }

  .contactp-infoCard h2{
    font-size:26px;
  }
}

@media (max-width: 640px){
  .contactp-infoCard{
    padding:24px 18px;
  }

  .contactp-faqItem summary{
    padding:18px 18px;
    padding-right:48px;
    font-size:17px;
  }

  .contactp-faqItem summary::after{
    right:18px;
  }

  .contactp-faqAnswer{
    padding:0 18px 18px;
    font-size:15px;
  }
}

/* ===================================================== RESPONSIVE - SLUŽBY ======================================================= */

@media (max-width: 1180px){
  .servicep-title{
    font-size:38px;
  }
}

@media (max-width: 1024px){
  .servicep-overviewGrid{
    grid-template-columns:1fr;
  }

  .servicep-layout{
    grid-template-columns:1fr;
  }

  .servicep-sidebar{
    position: static;
    order: 2;
  }

  .servicep-main{
    order: 1;
  }
}

@media (max-width: 640px){
  .servicep-formCard{
    padding:20px 18px;
  }

  .servicep-formTitle{
    font-size:26px;
  }

  .servicep-title{
    font-size:30px;
  }

  .servicep-content{
    font-size:16px;
    line-height:1.8;
  }

  .servicep-financeBox{
    padding:18px;
  }

  .servicep-overviewBody h2{
    font-size:24px;
  }
}


/* =================================================== RESPONSIVE - OFFER - SENT ==================================================== */

@media (max-width: 768px){
  .offer-sent-page{
    min-height:auto;
  }

  .offer-sent-body{
    padding:22px 18px 20px;
  }

  .offer-sent-title{
    max-width:none;
    font-size:28px;
  }

  .offer-sent-text{
    max-width:none;
    font-size:16px;
  }

  .offer-sent-table,
  .offer-sent-table tbody,
  .offer-sent-table tr,
  .offer-sent-table th,
  .offer-sent-table td{
    display:block;
    width:100%;
  }

  .offer-sent-table tr{
    border-bottom:1px solid rgba(15,23,42,.07);
  }

  .offer-sent-table tr:last-child{
    border-bottom:0;
  }

  .offer-sent-table th,
  .offer-sent-table td{
    border-bottom:0;
    padding:8px 12px;
  }

  .offer-sent-table th{
    padding-bottom:3px;
  }

  .offer-sent-table td{
    padding-top:0;
  }

  .offer-sent-actions,
  .offer-sent-actions-between{
    flex-direction:column;
    align-items:stretch;
  }

  .offer-sent-actions .btn-real,
  .offer-sent-actions .btn-ghost{
    width:100%;
    justify-content:center;
  }

  .offer-sent-resend{
    width:100%;
  }

  .offer-sent-resend .btn-real{
    width:100%;
  }
}
