:root{
  --bg:#ffffff;
  --text:#0d1b2e;
  --muted:#7b8595;
  --muted-2:#b9c0ca;
  --navy:#142a4a;
  --line:#e8edf3;
  --primary:#48a7d8;
  --primary-2:#389bd3;
  --btn-dark:#1c2b3f;
  --shadow: 0 18px 40px rgba(16,42,74,.12);
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 28px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
}
.header-inner{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-mark{font-weight:800; font-size:22px}
.nav{display:flex; align-items:center; gap:22px}
.nav-link{font-size:14px; color:#1c2b3f; opacity:.9}
.nav-link:hover{opacity:1}
.nav-link.is-active{color:var(--primary); opacity:1}
.nav-cta{
  margin-left:14px;
  padding:10px 18px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-weight:700;
  font-size:14px;
  box-shadow: 0 14px 30px rgba(72,167,216,.25);
}

.nav-cta:hover{background:var(--primary-2)}


.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:0;
  background:transparent;
  border-radius:12px;
}
.nav-toggle span{display:block; height:2px; margin:6px 10px; background:#1c2b3f; border-radius:2px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
}
.btn-dark{background:var(--btn-dark); color:#fff}
.btn-dark:hover{filter:brightness(1.05)}
.btn-primary{background:var(--primary); color:#fff}
.btn-primary:hover{background:var(--primary-2)}

.section{padding:40px 0 background: #fff;}
.section-kicker{color:var(--muted-2); font-size:14px; margin:0 0 36px}

.hero{padding:54px 0 6px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:start;
}
.hero-copy h1{margin:0 0 14px; font-size:26px; line-height:1.25; font-weight:800}
.hero-copy p{margin:0 0 18px; color:var(--muted); line-height:1.55; font-size:14px}
.hero-actions{display:flex; gap:14px; align-items:center}
.hero-media{justify-self:end; width:430px}
.hero-frame{
  border-radius:22px;
  background:rgba(72,167,216,.22);
  padding:12px;
}
.hero-frame img{
  width:100%;
  height:235px;
  object-fit:cover;
  border-radius:18px;
  box-shadow: var(--shadow);
  background:#f3f6fb;
}


.hero-copy--center{max-width:820px; margin:0 auto; text-align:center}
.hero-copy--center .hero-actions{justify-content:center; flex-wrap:wrap}
.hero-bleed{margin-top:26px}
.hero-bleed img{width:100vw; max-width:100vw; height:360px; object-fit:cover; display:block; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); box-shadow: var(--shadow); background:#f3f6fb}
@media (max-width:720px){
  .hero-bleed img{height:280px}
}

.typewriter{position:relative}
.typewriter.is-typing::after{
  content:"";
  display:inline-block;
  width:2px;
  height:1em;
  background:currentColor;
  margin-left:6px;
  transform:translateY(2px);
  animation: twBlink 1s step-end infinite;
}
@keyframes twBlink{50%{opacity:0}}

.product-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:70px 110px;
  padding:14px 0 6px;
}
.product-card{max-width:520px}
.product-image{display:flex; justify-content:flex-start; padding:10px 0 18px; background:transparent;}
.product-image img{width:420px; height:260px; object-fit:contain; background:transparent; filter:none;}
.product-card h3{margin:10px 0 12px; font-size:22px; line-height:1.25; font-weight:800}
.product-card p{margin:0; color:var(--muted); font-size:16px; line-height:1.7; max-width:460px}

/* Klikateľné produkty */
.product-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.product-card-link:focus-visible{
  outline: 3px solid rgba(72,167,216,.55);
  outline-offset: 6px;
  border-radius: 18px;
}
.product-card-link:hover h3{
  color: var(--primary);
}

.product-detail{
  display:grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 60px;
  align-items:start;
  padding: 10px 0 0;
}
.product-gallery-main{
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16,42,74,.08);
  overflow:hidden;
}
.product-gallery-main img{
  width: 100%;
  height: 360px;
  object-fit: contain;
  display:block;
  padding: 18px;
}
.product-gallery-thumbs{
  display:flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap:wrap;
}
.pg-thumb{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.pg-thumb img{
  width: 86px;
  height: 66px;
  object-fit: contain;
  display:block;
}
.pg-thumb.is-active{
  border-color: rgba(72,167,216,.55);
  box-shadow: 0 10px 24px rgba(72,167,216,.18);
}
.pg-thumb:hover{transform: translateY(-1px)}
.product-meta h2{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}
.product-meta .lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 62ch;
}
.product-meta .product-actions{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 0}
.product-specs{
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display:grid;
  gap: 10px;
  max-width: 68ch;
}
.spec-row{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child{border-bottom:none}
.spec-key{font-weight:700}
.spec-val{color:var(--muted); text-align:right}


.product-copy{margin-top:18px; max-width:68ch}
.product-copy h3{margin:22px 0 10px; font-size:18px; font-weight:800}
.product-copy p{margin:0 0 12px; color:var(--muted); line-height:1.8; font-size:14px}
.product-copy .vyhoda-list{margin:6px 0 0; padding-left:18px; color:var(--muted); line-height:1.8; font-size:14px}
.product-copy .vyhoda-list li{margin:8px 0}
.product-callout{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(72,167,216,.10);
  border: 1px solid rgba(72,167,216,.22);
  color: var(--text);
}
.product-callout strong{font-weight:900}

.banner{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--navy);
  color:#fff;
}
.banner-inner{padding: 64px clamp(20px, 6vw, 120px)}
.banner-kicker{margin:0 0 14px; opacity:.65; font-size:16px}
.banner-row{display:flex; align-items:center; justify-content:space-between; gap:24px}
.banner-title{margin:0 0 12px; font-weight:900; font-size:clamp(34px, 4vw, 52px); line-height:1.05}
.banner-copy{margin:0; font-size:clamp(16px, 1.6vw, 22px); line-height:1.35; opacity:.92}
.banner-arrow{font-size:clamp(34px, 4vw, 52px); line-height:1; opacity:.9}
.banner-arrow:hover{opacity:1}

.about{display:grid; grid-template-columns: 360px 1fr; gap:54px; align-items:start}
.about-media{display:flex; flex-direction:column; gap:14px; align-items:flex-start}
.about-media img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:16px;
  box-shadow: 0 14px 36px rgba(16,42,74,.10);
  background:#f3f6fb;
}
.about-copy p{margin:0 0 12px; color:var(--muted); font-size:13px; line-height:1.7}
.link{color:var(--primary); font-weight:600}

.ref-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:26px; margin:18px 0 26px}
.ref-image{position:relative; border-radius:16px; overflow:hidden; box-shadow: 0 16px 40px rgba(16,42,74,.10)}
.ref-image img{width:100%; height:155px; object-fit:cover; background:#f3f6fb}
.ref-badge{
  position:absolute; left:10px; top:10px;
  background:rgba(20,42,74,.78); color:#fff;
  padding:8px 10px; border-radius:12px;
  font-size:12px; line-height:1.2;
  backdrop-filter: blur(6px);
}

.site-footer{background:#0f0f10; color:#d7d7d7; padding:28px 0}
.footer-inner{display:grid; grid-template-columns: 220px 1fr 200px; gap:28px; align-items:start}
.footer-brand{font-weight:800; font-size:18px; color:#fff; margin-bottom:12px}
.footer-nav{display:grid; gap:10px; font-size:13px; opacity:.9}
.footer-nav a:hover{opacity:1; color:#fff}
.footer-mid{padding-top:28px}
.footer-post{margin-bottom:14px}
.footer-post-title{font-weight:700; color:#fff; font-size:13px; margin-bottom:4px}
.footer-post-sub{font-size:12px; color:#bdbdbd; opacity:.85; line-height:1.35}
.footer-pill{
  display:inline-flex;
  margin-top:6px;
  padding:9px 18px;
  border-radius:999px;
  background:#f1f1f1;
  color:#111;
  font-weight:600;
  font-size:12px;
}
.footer-right{padding-top:28px; display:grid; gap:10px; justify-items:end}
.footer-link{font-size:13px; color:#bdbdbd}
.footer-link:hover{color:#fff}

.page-hero{background:var(--navy); padding:64px 0 54px}
.page-hero-inner{max-width:var(--container); margin:0 auto; padding:0 28px}
.page-hero-title{margin:0; font-weight:900; letter-spacing:-.3px; font-size:clamp(34px,4vw,56px)}
.page-hero-strong{color:#fff}
.page-hero-dash{color:#ffffffcc}
.page-hero-muted{color:#ffffff80}
.page-section{padding:54px 0 80px}

.two-col{display:grid; grid-template-columns: 1.15fr .85fr; gap:46px; align-items:start}
.h2{margin:0 0 14px; font-size:28px; font-weight:900; line-height:1.2}
.h3{margin:0 0 14px; font-size:22px; font-weight:900; line-height:1.2}
.p{margin:0 0 14px; color:var(--muted); line-height:1.7}
.media-card{border-radius:22px; background:rgba(72,167,216,.10); padding:12px}
.media-card img{width:100%; height:240px; object-fit:cover; border-radius:18px; box-shadow:var(--shadow)}

.vyhody-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:56px; align-items:start}
.vyhoda-title{margin:0 0 10px; font-size:20px; font-weight:900}
.vyhoda-text{margin:0 0 12px; color:var(--muted); line-height:1.7; font-size:13px}
.vyhoda-ill{display:flex; justify-content:center; align-items:center; min-height:200px}
.vyhoda-ill img{width:240px; height:200px; object-fit:contain}
.vyhoda-list{margin:6px 0 0; padding-left:18px; color:var(--muted); line-height:1.7; font-size:13px}
.vyhoda-list li{margin:4px 0}

.refs-page-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:26px}
.refp-img{border-radius:16px; overflow:hidden; box-shadow:0 16px 40px rgba(16,42,74,.10)}
.refp-img img{width:100%; height:180px; object-fit:cover; background:#f3f6fb}
.refp-title{margin:12px 0 8px; font-size:16px; font-weight:900; line-height:1.25}
.refp-text{margin:0; color:var(--muted); font-size:13px; line-height:1.6}

.contact-form{max-width:980px}
.contact-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:16px}
.input,.textarea{width:100%; border:1px solid #e5eaf1; border-radius:999px; padding:14px 18px; font-size:14px; outline:none}
.textarea{border-radius:18px; min-height:160px; resize:vertical; padding:16px 18px}
.contact-actions{display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:16px}
.checkbox{display:flex; align-items:center; gap:12px; color:var(--muted)}
.checkbox input{width:18px; height:18px}
.contact-bottom{display:grid; grid-template-columns:1fr 1fr; gap:44px; margin-top:44px; align-items:start}
.map-embed{width:100%; height:280px; border:0; border-radius:18px; box-shadow:0 16px 40px rgba(16,42,74,.10); background:#f3f6fb}
.info-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px 34px}
.info-label{font-weight:800; color:var(--text); margin-bottom:6px}
.info-text{color:var(--muted); line-height:1.6; font-size:13px}

.price-accordion{max-width:980px}
.price-item{border-bottom:1px solid #e5eaf1; padding:16px 0}
.price-item summary{
  list-style:none; cursor:pointer;
  font-size:34px; font-weight:500; color:#132a49;
  display:flex; align-items:center; justify-content:space-between;
}
.price-item summary::-webkit-details-marker{display:none}
.price-body{padding:18px 0 8px}
.table-wrap{overflow:auto}
.price-table{width:100%; border-collapse:collapse; min-width:760px}
.price-table thead th{background:var(--primary); color:#fff; text-align:left; padding:14px 12px; font-weight:700; font-size:14px}
.price-table tbody td{padding:14px 12px; border-bottom:1px solid #eef2f7; vertical-align:middle; color:#1c2b3f; font-size:14px}
.price-table .small{font-weight:500; opacity:.9; font-size:12px}
.td-img{width:54px; height:54px; object-fit:contain}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr; gap:22px}
  .hero-media{justify-self:start; width:100%}
  .product-grid{grid-template-columns:1fr; gap:44px}
  .product-detail{grid-template-columns:1fr; gap:28px}
  .product-gallery-main img{height: 300px}
  .about{grid-template-columns:1fr; gap:18px}
  .ref-grid{grid-template-columns:1fr; gap:14px}
  .footer-inner{grid-template-columns:1fr; gap:18px}
  .footer-right{justify-items:start}
  .footer-mid{padding-top:0}
  .two-col{grid-template-columns:1fr; gap:22px}
  .vyhody-grid{grid-template-columns:1fr; gap:24px}
  .refs-page-grid{grid-template-columns:1fr; gap:18px}
  .contact-row{grid-template-columns:1fr}
  .contact-bottom{grid-template-columns:1fr; gap:22px}
  .info-grid{grid-template-columns:1fr}
  .price-item summary{font-size:24px}

  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    position:absolute; left:0; right:0; top:84px;
    background:#fff; border-top:1px solid var(--line);
    display:none; flex-direction:column; align-items:flex-start;
    padding:16px 28px 22px; gap:14px;
  }
  .nav.is-open{display:flex}
  .nav-cta{margin-left:0}
}

.header-inner{position:relative}
.nav.nav-centered{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  margin:0;
}
.header-cta{margin-left:0}

@media (max-width: 980px){
  .nav.nav-centered{
    position:absolute;
    left:0;
    transform:none;
  }
}

.catalog-shell{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 60px rgba(16,42,74,.08);
}
.catalog-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(20,42,74,.06), rgba(20,42,74,.00));
  border-bottom: 1px solid var(--line);
}
.catalog-title{display:flex; align-items:center; gap:10px; font-size:14px}
.catalog-title .dot{width:10px;height:10px;border-radius:999px;background:var(--primary);}
.catalog-title .muted{color:var(--muted); font-weight:500}
.catalog-actions{display:flex; align-items:center; gap:10px}
.cat-btn{
  border:1px solid var(--line);
  background:#fff;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  font-weight:700;
  cursor:pointer;
}
.cat-btn:disabled{opacity:.4; cursor:not-allowed}
.cat-btn--link{display:inline-flex; align-items:center; text-decoration:none; color:var(--text);}
.page-indicator{min-width: 90px; text-align:center; color:var(--muted); font-weight:700; font-size:13px}

.book-wrap{padding: 18px; background: radial-gradient(60% 80% at 50% 20%, rgba(72,167,216,.18), rgba(255,255,255,0) 60%);}
.book{
  position: relative;
  margin: 0 auto;
  width: min(980px, 100%);
  aspect-ratio: 16/10;
  border-radius: 18px;
  background: #0f1724;
  box-shadow: 0 26px 90px rgba(16,42,74,.18);
  overflow:hidden;
}
.page{
  position:absolute;
  top:0; bottom:0;
  width:50%;
  background:#f3f6fb;
}
.page--left{left:0; border-right: 1px solid rgba(0,0,0,.10);}
.page--right{right:0;}
.page img{
  width:100%;
  height:100%;
  object-fit: contain;
  background:#f3f6fb;
}

.flip{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:50%;
  transform-style: preserve-3d;
  transform-origin: left center;
  pointer-events:none;
  opacity:0;
}
.flip-front, .flip-back{
  position:absolute; inset:0;
  backface-visibility:hidden;
}
.flip-front img, .flip-back img{width:100%; height:100%; object-fit:contain; background:#f3f6fb;}
.flip-back{transform: rotateY(180deg);}

.flip.is-anim{opacity:1; transition: transform 650ms cubic-bezier(.2,.8,.2,1), opacity 150ms linear;}
.flip.is-next{transform: rotateY(-180deg);}
.flip.is-prev{
  left:0;
  transform-origin: right center;
}
.flip.is-prev.is-anim{transform: rotateY(180deg);}

.thumbs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding: 14px 16px 16px;
  background:#fff;
  border-top: 1px solid var(--line);
}
.thumb{
  border:1px solid var(--line);
  border-radius: 12px;
  background:#fff;
  padding: 6px;
  cursor:pointer;
  flex: 0 0 auto;
}
.thumb img{width:72px; height:54px; object-fit:cover; border-radius: 8px; background:#f3f6fb;}
.thumb.is-active{border-color: rgba(72,167,216,.9); box-shadow: 0 10px 26px rgba(72,167,216,.20);}

@media (max-width: 980px){
  .book{aspect-ratio: 4/3;}
  .thumb img{width:58px; height:44px;}
}

.page-dark .site-header{
  background: var(--navy);
}
.page-dark .header-inner{
  height: 90px;
}
.page-dark .brand-mark{color:#fff}
.page-dark .nav-link{
  color:#fff;
  opacity:.85;
}
.page-dark .nav-link:hover{opacity:1}
.page-dark .nav-link.is-active{
  color: var(--primary);
  opacity: 1;
}
.page-dark .nav-cta{
  background: var(--primary);
  color:#fff;
  border: 1px solid rgba(255,255,255,.0);
  box-shadow: 0 14px 30px rgba(72,167,216,.25);
}
.page-dark .nav-cta:hover{background: var(--primary-2)}

.page-dark .page-hero{
  margin-top: -1px;
}

body{background: var(--bg);}

.nav-logo{ height:48px; transition:transform .4s ease, filter .4s ease; }
.nav-logo:hover{ transform:scale(1.08) rotate(-2deg); filter:drop-shadow(0 6px 18px rgba(0,0,0,.4)); }

.navbar{ transform:translateY(-100%); opacity:0; animation:navDrop .9s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes navDrop{
  to{ transform:translateY(0); opacity:1; }
}

/* Scroll reveal */
.reveal{ opacity:0; transform:translateY(40px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible{ opacity:1; transform:translateY(0); }

/* Buttons brutal hover */
.btn{
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Section subtle entrance */
section{ opacity:0; transform:translateY(60px); animation:sectionIn 1s ease forwards; }
section:nth-of-type(1){ animation-delay:.2s; }
section:nth-of-type(2){ animation-delay:.4s; }
section:nth-of-type(3){ animation-delay:.6s; }
@keyframes sectionIn{
  to{ opacity:1; transform:translateY(0); }
}


/* ===== PRO MOTION + RESPONSIVE (adds only) ===== */
.brand-logo{
  height: 46px;
  width: auto;
  display:block;
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.brand:hover .brand-logo{
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(16,42,74,.25));
}

/* Nav links: animated underline */
.nav-link{
  position:relative;
  padding: 10px 6px;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:6px;
  right:6px;
  bottom:6px;
  height:2px;
  background: currentColor;
  opacity:.0;
  transform: scaleX(.25);
  transform-origin:left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.nav-link:hover::after, .nav-link.is-active::after{
  opacity:.9;
  transform: scaleX(1);
}

/* Header: glass + shadow on scroll */
.site-header{
  transition: box-shadow .35s ease, background-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 16px 34px rgba(16,42,74,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

/* Scroll reveal (safe default) */
[data-reveal]{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-inview{
  opacity:1;
  transform: translateY(0);
}

/* Card hover tilt (subtle) */
[data-tilt]{
  will-change: transform;
  transition: transform .25s ease, box-shadow .25s ease;
}
[data-tilt]:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Buttons: premium hover */
.btn, .nav-cta{
  will-change: transform;
}
.btn:hover, .nav-cta:hover{
  transform: translateY(-3px);
}

/* Better mobile spacing */
@media (max-width: 980px){
  .header-inner{ height:auto; padding: 14px 0; }
  .brand-logo{ height: 40px; }
  .nav-cta.header-cta{ display:none; } /* keep layout clean on mobile */
}
@media (max-width: 720px){
  .container{ padding: 0 18px; }
  .brand-logo{ height: 36px; }
  .hero-actions .btn{ width: 100%; justify-content:center; }
}
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  .site-header{ transition:none; }
  .brand-logo{ transition:none; }
}



/* Smaller product images (requested) */
.product-image img{
  width: 100%;
  height: 220px;
  object-fit: contain;
}
@media (max-width: 980px){
  .product-image img{ height: 200px; }
}
@media (max-width: 720px){
  .product-image img{ height: 170px; }
}


/* Make whole product card clickable without changing design */
.product-card-link{
  display:block;
  height:100%;
  color:inherit;
}
.product-card-link:focus{
  outline: 3px solid rgba(72,167,216,.35);
  outline-offset: 6px;
  border-radius: 18px;
}


/* ===== ULTRA PRO HAMBURGER / DRAWER ===== */
.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0); /* no darkening */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 60;
}

@media (max-width: 980px){
  /* keep header clean */
  .header-inner{ height: 72px; gap: 14px; }

  /* hamburger button */
  .nav-toggle{
    display:block;
    width: 46px; height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(232,237,243,.95);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
  }
  .nav-toggle span{
    display:block;
    height: 2.5px;
    margin: 6px 9px; /* longer bars */
    background:#1c2b3f;
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
  }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity:0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

  /* hide desktop CTA to avoid wrapping */
  .header-cta{ display:none; }

  /* drawer nav */
  .nav.nav-centered{
    position: fixed !important;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(88vw, 420px);
    padding: 96px 18px 18px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(232,237,243,.98);
    box-shadow: -28px 0 70px rgba(16,42,74,.18);
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    transform: translateX(110%);
    transition: transform .55s cubic-bezier(.2,.9,.2,1);
    z-index: 70;
    overscroll-behavior: contain;
  }
  .nav.nav-centered.is-open{ transform: translateX(0); }

  /* top bar inside drawer */
  .drawer-top{
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 420px);
    height: 84px;
    padding: 14px 18px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    z-index: 75;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
  }
  .drawer-top.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .drawer-brand{ display:flex; align-items:center; gap:10px; }
  .drawer-brand img{ height: 36px; width:auto; display:block; }

  .drawer-close{
    width: 44px; height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(232,237,243,.98);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    display:grid; place-items:center;
    cursor:pointer;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .drawer-close:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(16,42,74,.12); }
  .drawer-close span{ width:18px; height:2px; background: var(--navy); border-radius:2px; position:relative; display:block; }
  .drawer-close span::before, .drawer-close span::after{
    content:""; position:absolute; left:0; width:18px; height:2px; background: var(--navy); border-radius:2px;
  }
  .drawer-close span::before{ transform: rotate(45deg); }
  .drawer-close span::after{ transform: rotate(-45deg); }

  /* links */
  .nav.nav-centered .nav-link{
    border-radius: 16px;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 650;
    border: 1px solid rgba(232,237,243,.95);
    background: rgba(255,255,255,.6);
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
  }
  .nav.nav-centered .nav-link:hover{
    background: rgba(72,167,216,.10);
    border-color: rgba(72,167,216,.35);
    transform: translateY(-1px);
  }
  .nav.nav-centered .nav-link.is-active{
    background: rgba(72,167,216,.14);
    border-color: rgba(72,167,216,.40);
  }

  /* footer logo */
  .nav-drawer-footer{
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(232,237,243,.95);
    display:flex; justify-content:center; align-items:center;
  }
  .nav-drawer-footer img{ height: 34px; width:auto; opacity:.95; }

  body.nav-locked{ overflow:hidden; }
}

/* Safety: prevent horizontal scroll */
html, body{ overflow-x:hidden; }

/* nav-drawer-footer desktop hide */
.nav-drawer-footer{ display:none; }
@media (max-width: 980px){
  .nav-drawer-footer{ display:flex; }
}

/* drawer-top desktop hide */
.drawer-top{ display:none; }
@media (max-width: 980px){
  .drawer-top{ display:flex; }
}


/* ===== HAMBURGER CLICK FIX (z-index) ===== */
.nav-backdrop{ z-index: 40 !important; }
@media (max-width: 980px){
  .nav.nav-centered{ z-index: 80 !important; }
  .drawer-top{ z-index: 90 !important; }
  .nav-toggle{ z-index: 95 !important; }
}


/* ===== MOBILE MENU VISUAL FIX ===== */
@media (max-width:980px){

  #primaryNav a{
    color:#1b2b44 !important;
    background:#ffffff;
    display:block;
  }

  #primaryNav a:hover{
    background:#eef6ff;
    color:#0f2e57 !important;
  }

  #primaryNav a:active,
  #primaryNav a:focus{
    background:#d9ecff !important;
    color:#0f2e57 !important;
  }

  #primaryNav li{
    opacity:1 !important;
  }

}


/* ===== MOBILE MENU PREMIUM LOOK ===== */
@media (max-width:980px){

  /* Drawer: softer, more premium */
  .nav.nav-centered{
    background: rgba(255,255,255,.985) !important;
    border-left: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: -34px 0 90px rgba(16,42,74,.20) !important;
  }

  /* Add subtle top gradient inside drawer */
  .nav.nav-centered::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:140px;
    background: linear-gradient(180deg, rgba(72,167,216,.16), rgba(72,167,216,0));
    pointer-events:none;
    border-left: 1px solid rgba(232,237,243,0);
  }

  /* Link list becomes "cards" */
  #primaryNav{
    padding-top: 6px;
  }

  #primaryNav li{
    opacity:1 !important;
    transform: none;
  }

  #primaryNav a{
    position: relative;
    display:flex !important;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.72) !important;
    border: 1px solid rgba(232,237,243,.95) !important;
    box-shadow: 0 10px 26px rgba(16,42,74,.06);
    color:#142a46 !important;
    letter-spacing: .2px;
  }

  /* Left accent bar */
  /* Right chevron */
  #primaryNav a:hover{
    background: rgba(72,167,216,.10) !important;
    border-color: rgba(72,167,216,.35) !important;
    transform: translateY(-1px);
  }
  #primaryNav a:hover::after{
    transform: translateX(3px);
    opacity: .7;
  }

  #primaryNav a:active{
    transform: translateY(0) scale(.99);
  }

  #primaryNav a:focus{
    outline: none;
    box-shadow: 0 0 0 4px rgba(72,167,216,.20), 0 16px 34px rgba(16,42,74,.08);
  }

  /* When drawer opens: staggered slide-in for items */
  .nav.nav-centered #primaryNav li{
    transform: translateX(18px);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .45s ease;
  }
  .nav.nav-centered.is-open #primaryNav li{
    transform: translateX(0);
    opacity: 1;
  }
  .nav.nav-centered.is-open #primaryNav li:nth-child(1){ transition-delay: .06s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(2){ transition-delay: .10s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(3){ transition-delay: .14s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(4){ transition-delay: .18s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(5){ transition-delay: .22s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(6){ transition-delay: .26s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(7){ transition-delay: .30s; }
  .nav.nav-centered.is-open #primaryNav li:nth-child(8){ transition-delay: .34s; }

  /* Make close button feel premium */
  .drawer-close{
    box-shadow: 0 14px 32px rgba(16,42,74,.10);
  }
}


/* ===== MOBILE MENU ULTRA PRO (separate from logo) ===== */
@media (max-width:980px){

  /* Give the drawer a clear header zone (so links never blend with logo) */
  .drawer-top{
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232,237,243,.98);
    box-shadow: 0 18px 40px rgba(16,42,74,.08);
  }

  /* Push nav list lower + add inner divider */
  .nav.nav-centered{
    padding-top: 112px !important;  /* more breathing room under header */
  }

  .nav.nav-centered::before{
    height: 170px !important;       /* keep the gradient in header area */
  }

  /* Add a subtle section label + divider above first item */
  #primaryNav{
    margin-top: 10px;
    padding-top: 14px;
    position: relative;
  }

  /* Make items slightly more airy and premium */
  #primaryNav a{
    padding: 16px 16px !important;
    border-radius: 20px !important;
  }

  /* Improve visual hierarchy: stronger first item spacing */
  #primaryNav li:first-child{
    margin-top: 10px;
  }

}


/* ===== ULTRA PROFESSIONAL MOBILE DRAWER ===== */
@media (max-width:980px){

.nav.nav-centered{
  background:#ffffff;
  box-shadow:-40px 0 120px rgba(0,0,0,0.18);
  border-left:1px solid rgba(0,0,0,0.05);
  padding-top:120px !important;
}

.drawer-top{
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.drawer-close{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#f4f7fb;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

#primaryNav{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

#primaryNav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-radius:16px;
  font-weight:600;
  font-size:16px;
  color:#142a46;
  background:#f8fbff;
  border:1px solid rgba(0,0,0,0.04);
  transition:all .25s ease;
}

#primaryNav a:hover{
  background:#eaf4ff;
  transform:translateX(4px);
  border-color:#9dd1ff;
}

.nav.nav-centered li{
  opacity:0;
  transform:translateX(30px);
  transition:all .45s cubic-bezier(.2,.9,.2,1);
}

.nav.nav-centered.is-open li{
  opacity:1;
  transform:translateX(0);
}

.nav.nav-centered.is-open li:nth-child(1){transition-delay:.06s;}
.nav.nav-centered.is-open li:nth-child(2){transition-delay:.10s;}
.nav.nav-centered.is-open li:nth-child(3){transition-delay:.14s;}
.nav.nav-centered.is-open li:nth-child(4){transition-delay:.18s;}
.nav.nav-centered.is-open li:nth-child(5){transition-delay:.22s;}
.nav.nav-centered.is-open li:nth-child(6){transition-delay:.26s;}
}


/* ===== MENU REFINEMENT: no dots, blue active, better header ===== */
@media (max-width:980px){

  /* Header: cleaner, premium */
  .drawer-top{
    background: rgba(255,255,255,.96) !important;
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: 0 10px 30px rgba(16,42,74,.10) !important;
    height: 92px !important;
    padding: 0 18px !important;
  }
  .drawer-brand{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .drawer-brand img{
    height: 38px !important;
    width: auto;
    display:block;
  }

  /* Close: more elegant */
  .drawer-close{
    background: #ffffff !important;
    border: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: 0 12px 26px rgba(16,42,74,.10) !important;
  }

  /* Items: remove extra decorations; keep clean chevron */
  #primaryNav a{
    background:#ffffff !important;
    box-shadow: 0 10px 22px rgba(16,42,74,.06) !important;
    border: 1px solid rgba(232,237,243,.98) !important;
  }
  #primaryNav a::before{ content:none !important; } /* kill dots */

  /* Active (selected) */
  #primaryNav a.is-active{
    background: rgba(72,167,216,.14) !important;
    border-color: rgba(72,167,216,.45) !important;
    box-shadow: 0 14px 30px rgba(16,42,74,.08) !important;
    color:#0f2e57 !important;
  }
  #primaryNav a.is-active::after{
    opacity: .8;
  }

  /* Hover */
  #primaryNav a:hover{
    background: rgba(72,167,216,.10) !important;
    border-color: rgba(72,167,216,.35) !important;
    transform: translateX(2px) !important;
  }
}


/* ===== MOBILE DRAWER BRUTAL CLEAN (right, fixed) ===== */
@media (max-width:980px){

  /* Drawer anchored right, never drifting */
  .nav.nav-centered{
    right: 0 !important;
    left: auto !important;
    width: min(86vw, 420px) !important;
    transform: translateX(105%) !important;
    transition: transform .55s cubic-bezier(.2,.9,.2,1) !important;
    padding: 92px 18px 18px !important;
    background: rgba(255,255,255,.98) !important;
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow: -40px 0 120px rgba(16,42,74,.22) !important;
    border-left: 1px solid rgba(232,237,243,.98) !important;
  }
  .nav.nav-centered.is-open{ transform: translateX(0) !important; }

  /* Header: full-width inside drawer, clean spacing */
  .drawer-top{
    right: 0 !important;
    left: auto !important;
    width: min(86vw, 420px) !important;
    height: 84px !important;
    padding: 0 18px !important;
    background: rgba(255,255,255,.92) !important;
    border-bottom: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: 0 14px 40px rgba(16,42,74,.10) !important;
  }
  .drawer-brand img{ height: 34px !important; }

  /* List: premium, no bubbles */
  #primaryNav{
    padding: 6px 0 0 !important;
    margin: 0 !important;
  }
  #primaryNav li{
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  #primaryNav a{
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 14px !important;
    padding: 14px 14px !important;
    font-weight: 650 !important;
    font-size: 16px !important;
    color: #142a46 !important;
    display:flex !important;
    align-items:center !important;
    justify-content: space-between !important;
  }

  /* subtle separator */
  #primaryNav li + li a{
    border-top: 1px solid rgba(232,237,243,.98) !important;
    border-radius: 0 !important;
  }

  /* hover / focus */
  #primaryNav a:hover{
    background: rgba(72,167,216,.08) !important;
  }
  #primaryNav a:focus{
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(72,167,216,.18) !important;
  }

  /* Active: blue left bar + soft background */
  #primaryNav a.is-active{
    background: rgba(72,167,216,.12) !important;
    position: relative;
  }
  #primaryNav a.is-active::before{
    content:"";
    position:absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: rgba(72,167,216,.95);
  }

  /* Footer logo stays subtle */
  .nav-drawer-footer{
    border-top: 1px solid rgba(232,237,243,.98) !important;
    padding-top: 16px !important;
    margin-top: 18px !important;
  }
  .nav-drawer-footer img{ height: 30px !important; opacity: .9; }

}


/* ===== FIX: drawer header overlapping first menu item ===== */
@media (max-width:980px){

  /* push menu content below header */
  .nav.nav-centered{
    padding-top: 110px !important;
  }

  /* make header truly fixed inside drawer */
  .drawer-top{
    position: absolute !important;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 420px);
    z-index: 5;
  }

  /* ensure first item spacing */
  #primaryNav{
    margin-top: 10px !important;
  }

  #primaryNav li:first-child a{
    margin-top: 8px !important;
  }

}


/* ===== ULTRA POLISH MOBILE DRAWER (agency-level) ===== */
@media (max-width:980px){

  .nav.nav-centered{
    right: 0 !important;
    left: auto !important;
    width: min(86vw, 420px) !important;
    padding: 116px 18px 20px !important;
    border-left: 1px solid rgba(232,237,243,.98) !important;
    background: rgba(255,255,255,.985) !important;
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: -44px 0 140px rgba(16,42,74,.24) !important;
  }

  .drawer-top{
    position: absolute !important;
    inset: 0 0 auto auto;
    width: min(86vw, 420px) !important;
    height: 96px !important;
    padding: 0 18px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    background:
      linear-gradient(180deg, rgba(72,167,216,.14), rgba(255,255,255,0) 70%),
      rgba(255,255,255,.92) !important;
    border-bottom: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: 0 18px 46px rgba(16,42,74,.10) !important;
    backdrop-filter: blur(18px) saturate(160%);
  }

  .drawer-brand{
    display:flex !important;
    align-items:center !important;
    gap: 10px !important;
    max-width: 70%;
  }
  .drawer-brand img{
    height: 34px !important;
    width:auto !important;
    display:block !important;
  }

  .drawer-close{
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid rgba(232,237,243,.98) !important;
    box-shadow: 0 14px 34px rgba(16,42,74,.12) !important;
  }
  .drawer-close:active{ transform: scale(.98); }

  #primaryNav{
    margin-top: 0 !important;
    padding: 0 !important;
  }

  #primaryNav a{
    position: relative;
    padding: 14px 14px !important;
    border-radius: 14px !important;
    font-weight: 650 !important;
    letter-spacing: .1px;
    color: #142a46 !important;
    background: transparent !important;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }

  #primaryNav li + li a{
    border-top: 1px solid rgba(232,237,243,.90) !important;
    border-radius: 0 !important;
  }
  #primaryNav li:first-child a{
    border-top: none !important;
    border-radius: 14px 14px 0 0 !important;
  }
  #primaryNav li:last-child a{
    border-radius: 0 0 14px 14px !important;
  }

  #primaryNav a:hover{
    background: rgba(72,167,216,.08) !important;
    transform: translateX(2px);
  }

  #primaryNav a.is-active{
    background: rgba(72,167,216,.14) !important;
    box-shadow: inset 0 0 0 1px rgba(72,167,216,.35);
  }
  #primaryNav a.is-active::before{
    content:"";
    position:absolute;
    left: 8px;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: rgba(72,167,216,.95);
  }

  .nav-drawer-footer{ margin-top: 14px !important; }

}


/* ===== FIX: ensure drawer header never overlaps first items ===== */
@media (max-width:980px){
  /* Header is fixed layer; reserve space in drawer */
  .drawer-top{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: min(86vw, 420px) !important;
    height: 96px !important;
  }

  .nav.nav-centered{
    /* reserve header height + breathing room */
    padding-top: 132px !important;
  }

  /* extra safety so first row is always below */
  #primaryNav{
    padding-top: 10px !important;
  }
  #primaryNav li:first-child a{
    padding-top: 18px !important;
  }
}


/* ===== FINAL FIX: drawer header in-flow (sticky) so it cannot overlap items ===== */
@media (max-width:980px){
  /* Put header inside drawer and let it take space */
  .nav.nav-centered{
    padding-top: 18px !important; /* no artificial offset */
  }

  .drawer-top{
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    margin: -18px -18px 10px -18px; /* align with drawer padding */
    padding: 0 18px !important;
    z-index: 2 !important;
  }

  #primaryNav{
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  #primaryNav li:first-child a{
    padding-top: 14px !important; /* reset any safety hacks */
  }
}


/* ===== FIX: drawer header protruding outside drawer ===== */
@media (max-width:980px){
  .nav.nav-centered{ overflow: hidden !important; }
  .drawer-top{
    margin: 0 !important;          /* no negative margins */
    width: 100% !important;        /* fully inside drawer */
    border-radius: 0 !important;   /* avoid sticking out */
  }
}


/* Product content polish */
.product-card h3{line-height:1.15}
.product-card p{line-height:1.7}
.product-copy strong{color:var(--text)}
.product-copy ul.vyhoda-list strong{color:var(--text)}


/* Rodinné domy na kľúč */
.family-homes-section{
  padding: 34px 0 12px;
}
.family-homes{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items:center;
}
.family-homes-copy h2{
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--text);
  max-width: 14ch;
}
.family-homes-lead{
  margin: 0 0 18px;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.family-homes-points{
  display:grid;
  gap: 14px;
  margin-top: 16px;
}
.fh-point{
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(16,42,74,.06);
}
.fh-point strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text);
}
.fh-point span{
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.family-homes-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.family-homes-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
.fh-card{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(16,42,74,.10);
  background:#fff;
}
.fh-card img{
  width:100%;
  height:100%;
  min-height: 220px;
  object-fit: cover;
  display:block;
}
.fh-card-main{
  grid-row: span 2;
}
.fh-card-main img{
  min-height: 468px;
}

@media (max-width: 980px){
  .family-homes{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .family-homes-copy h2{
    max-width: none;
  }
  .family-homes-grid{
    grid-template-columns: 1fr 1fr;
  }
  .fh-card-main{
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .fh-card-main img{
    min-height: 320px;
  }
}
@media (max-width: 720px){
  .family-homes-section{
    padding-top: 24px;
  }
  .family-homes-grid{
    grid-template-columns: 1fr;
  }
  .fh-card img,
  .fh-card-main img{
    min-height: 220px;
  }
  .family-homes-actions .btn{
    width: 100%;
  }
}


/* Rodinné domy na kľúč – section styling */
.family-homes-section{
  padding: 44px 0 10px;
}
.family-homes-shell{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 42px;
  align-items: center;
}
.family-homes-left h2{
  margin: 8px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  max-width: 13ch;
}
.family-homes-lead{
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.family-homes-highlights{
  display:grid;
  gap: 14px;
  margin-top: 22px;
}
.fh-highlight{
  padding: 16px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(16,42,74,.06);
}
.fh-highlight strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text);
}
.fh-highlight span{
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.family-homes-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.family-homes-right{
  display:grid;
  gap: 16px;
}
.fh-visual-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
.fh-visual{
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid var(--line);
  background:#fff;
  box-shadow: 0 22px 58px rgba(16,42,74,.10);
}
.fh-visual img{
  width:100%;
  height:100%;
  min-height: 220px;
  object-fit: cover;
  display:block;
}
.fh-visual-large{
  grid-row: span 2;
}
.fh-visual-large img{
  min-height: 470px;
}
.fh-note{
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(72,167,216,.12), rgba(72,167,216,.06));
  border: 1px solid rgba(72,167,216,.24);
  color: var(--text);
}
.fh-note strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
}
.fh-note span{
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
@media (max-width: 980px){
  .family-homes-shell{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .family-homes-left h2{
    max-width:none;
  }
  .fh-visual-grid{
    grid-template-columns: 1fr 1fr;
  }
  .fh-visual-large{
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .fh-visual-large img{
    min-height: 320px;
  }
}
@media (max-width: 720px){
  .family-homes-section{
    padding-top: 28px;
  }
  .fh-visual-grid{
    grid-template-columns: 1fr;
  }
  .fh-visual img,
  .fh-visual-large img{
    min-height: 220px;
  }
  .family-homes-actions .btn{
    width:100%;
  }
}


/* Rodinné domy na kľúč – samostatná podstránka */
.family-page-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 44px;
  align-items: center;
}
.family-page-copy h2{
  margin: 8px 0 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  font-weight: 900;
  max-width: 13ch;
}
.family-page-lead{
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.family-page-points{
  display:grid;
  gap: 14px;
  margin-top: 22px;
}
.family-point{
  padding: 16px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(16,42,74,.06);
}
.family-point strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text);
}
.family-point span{
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.family-page-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.family-page-media{
  display:grid;
  gap:16px;
}
.family-media-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}
.family-media{
  border-radius: 24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 22px 58px rgba(16,42,74,.10);
}
.family-media img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  display:block;
}
.family-media-large{
  grid-row: span 2;
}
.family-media-large img{
  min-height: 470px;
}
.family-note{
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(72,167,216,.12), rgba(72,167,216,.06));
  border: 1px solid rgba(72,167,216,.24);
  color: var(--text);
}
.family-note strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
}
.family-note span{
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.family-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.family-bottom-card{
  padding: 22px 22px;
  border:1px solid var(--line);
  border-radius: 22px;
  background:#fff;
  box-shadow: 0 16px 38px rgba(16,42,74,.06);
}
.family-bottom-card h3{
  margin:0 0 12px;
  font-size: 20px;
}
.family-bottom-highlight{
  background: linear-gradient(180deg, rgba(72,167,216,.12), rgba(72,167,216,.04));
  border-color: rgba(72,167,216,.24);
}
.family-bottom-highlight p{
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
}
@media (max-width: 980px){
  .family-page-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .family-page-copy h2{
    max-width:none;
  }
  .family-media-grid{
    grid-template-columns: 1fr 1fr;
  }
  .family-media-large{
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .family-media-large img{
    min-height: 320px;
  }
  .family-bottom{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px){
  .family-media-grid{
    grid-template-columns: 1fr;
  }
  .family-media img,
  .family-media-large img{
    min-height: 220px;
  }
  .family-page-actions .btn{
    width:100%;
  }
}


/* Legal pages */
.legal-copy{
  max-width: 880px;
}
.legal-copy h2{
  margin: 8px 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}
.legal-copy h3{
  margin: 28px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
.legal-copy p,
.legal-copy .vyhoda-list{
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}
.legal-copy .vyhoda-list{
  padding-left: 18px;
}
.legal-copy .link{
  color: var(--primary);
}


/* Návody CTA */
.navody-cta{
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(72,167,216,.22);
  background: linear-gradient(180deg, rgba(72,167,216,.12), rgba(72,167,216,.05));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.navody-cta-copy{
  display:grid;
  gap: 6px;
}
.navody-cta-copy strong{
  font-size: 18px;
  color: var(--text);
}
.navody-cta-copy span{
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

/* Návody page */
.navody-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.navody-head-copy h2{
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  max-width: 14ch;
}
.navody-lead{
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}
.navody-grid{
  display:grid;
  gap: 24px;
}
.navody-card{
  display:grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, .85fr);
  gap: 24px;
  align-items:start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:#fff;
  box-shadow: 0 20px 54px rgba(16,42,74,.08);
}
.navody-video{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow:hidden;
  background:#111;
}
.navody-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.navody-card-copy h3{
  margin: 4px 0 10px;
  font-size: 26px;
  line-height: 1.12;
}
.navody-card-copy p{
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.navody-actions{
  margin-top: 18px;
}
.navody-bottom{
  margin-top: 22px;
}
.navody-bottom-box{
  padding: 18px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(16,42,74,.06);
  display:grid;
  gap: 6px;
}
.navody-bottom-box strong{
  font-size: 16px;
}
.navody-bottom-box span{
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 980px){
  .navody-head{
    align-items:start;
    flex-direction:column;
  }
  .navody-head-copy h2{
    max-width:none;
  }
  .navody-card{
    grid-template-columns: 1fr;
  }
  .navody-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 720px){
  .navody-cta .btn,
  .navody-head .btn{
    width:100%;
  }
  .navody-card{
    padding: 16px;
  }
  .navody-card-copy h3{
    font-size: 22px;
  }
}


/* ===== Agency polish (light-touch, keeps original design) ===== */
.site-header{
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(16,42,74,.05);
}

.nav-link{
  position: relative;
  transition: color .22s ease, opacity .22s ease;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  border-radius:999px;
}
.nav-link:hover::after,
.nav-link.is-active::after{
  transform: scaleX(1);
}

.nav-cta,
.btn{
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}
.nav-cta:hover,
.btn:hover{
  transform: translateY(-2px);
}
.btn-primary,
.nav-cta{
  box-shadow: 0 14px 30px rgba(72,167,216,.22);
}

.section-kicker{
  letter-spacing: .16em;
}

/* Hero polish */
.hero-full{
  position: relative;
  overflow: hidden;
}
.hero-overlay{
  background:
    linear-gradient(90deg, rgba(13,27,46,.62) 0%, rgba(13,27,46,.34) 45%, rgba(13,27,46,.12) 100%) !important;
}
.hero-copy{
  position: relative;
}
.hero-copy::before{
  content:"";
  position:absolute;
  left:-16px;
  top:10px;
  width:4px;
  height:72px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--primary), rgba(72,167,216,.18));
}
.hero-copy h1,
.hero-copy h2{
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-copy p{
  max-width: 58ch;
}

/* Cards / sections */
.product-card,
.fh-highlight,
.family-point,
.vyhoda-card,
.ref-card,
.family-bottom-card{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover,
.fh-highlight:hover,
.family-point:hover,
.vyhoda-card:hover,
.ref-card:hover,
.family-bottom-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(16,42,74,.10);
  border-color: rgba(72,167,216,.16);
}

.product-image img{
  transition: transform .28s ease;
}
.product-card:hover .product-image img{
  transform: scale(1.02);
}

/* Better spacing rhythm */
.page-section{
  padding-top: 70px;
  padding-bottom: 70px;
}
.section{
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Cleaner footer */
.site-footer{
  border-top: 1px solid rgba(232,237,243,.95);
}

/* Mobile keeps same design, only tidier spacing */
@media (max-width: 980px){
  .hero-copy::before{
    left:-10px;
    height:58px;
  }
  .page-section,
  .section{
    padding-top: 54px;
    padding-bottom: 54px;
  }
}


/* References page polish */
.refs-page-intro{
  max-width: 860px;
  margin: 0 0 26px;
}
.refs-page-intro h2{
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}
.refs-page-intro p{
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  max-width: 72ch;
}
.refp-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:14px;
  box-shadow:0 18px 40px rgba(16,42,74,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.refp-card:hover{
  transform: translateY(-4px);
  box-shadow:0 24px 46px rgba(16,42,74,.10);
  border-color: rgba(72,167,216,.18);
}
.refp-img img{
  height:220px;
}
.refp-title{
  margin:14px 0 8px;
  font-size:18px;
}
.refp-text{
  font-size:14px;
  line-height:1.75;
}

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

/* Navody only inside products page */
.navody-page{
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(232,237,243,.95);
}
.navody-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 18px;
}
.navody-head-copy h2{
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.08;
  max-width: 16ch;
}
.navody-lead{
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.85;
}
.navody-grid{
  margin-top: 24px;
}
.navody-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(16,42,74,.07);
}
.navody-card-copy{
  padding: 18px 18px 20px;
}
.navody-card-copy h3{
  margin:0 0 8px;
  font-size:20px;
}
.navody-card-copy p{
  color: var(--muted);
  line-height:1.8;
  margin:0;
}
.navody-actions{
  margin-top:16px;
}
@media (max-width: 980px){
  .navody-head{
    flex-direction:column;
    align-items:flex-start;
  }
}

.navody-center-btn{
display:flex;
justify-content:center;
margin:60px 0;
}

@media (max-width:800px){
  .navody-products-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* Navody block in products */
.navody-products-block{
  padding: 56px 0 72px;
}
.navody-products-card{
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(72,167,216,.10), rgba(72,167,216,.04));
  border: 1px solid rgba(72,167,216,.22);
  box-shadow: 0 22px 54px rgba(16,42,74,.08);
  text-align: center;
}
.navody-products-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 34px rgba(72,167,216,.28);
}
.navody-products-card h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
}
.navody-products-card p{
  margin: 0 auto 22px;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}
.navody-products-btn{
  min-width: 190px;
}

@media (max-width: 720px){
  .navody-products-block{
    padding: 40px 0 56px;
  }
  .navody-products-card{
    padding: 28px 20px;
    border-radius: 22px;
  }
}


/* Rodinne domy 4-square placeholder grid */
.family-media-grid-quad{
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
.family-media-square{
  aspect-ratio: 1 / 1;
  border-radius: 24px;
}
.family-media-square img{
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px){
  .family-media-grid-quad{
    grid-template-columns: 1fr !important;
  }
}

/* reference gallery */
.ref-thumbs{display:flex;gap:8px;margin-top:10px}
.ref-thumb{width:60px;height:45px;object-fit:cover;border-radius:8px;border:2px solid transparent;cursor:pointer}
.ref-thumb.active{border-color:#48a7d8}
.refp-img{position:relative}
.ref-view{position:absolute;bottom:10px;right:10px;background:#48a7d8;color:#fff;border:0;padding:6px 10px;border-radius:20px;cursor:pointer}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:9999}
.lightbox.open{display:flex}
.lightbox img{max-width:90%;max-height:80%}
.lb-prev,.lb-next{position:absolute;top:50%;transform:translateY(-50%);font-size:40px;color:#fff;background:none;border:0;cursor:pointer}
.lb-prev{left:40px}
.lb-next{right:40px}


/* Final responsive fixes */
.autodoprava-media-stack{
  display:grid;
  gap:18px;
}
.autodoprava-media-card{
  padding:14px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(72,167,216,.10), rgba(72,167,216,.05));
  border:1px solid rgba(72,167,216,.16);
  box-shadow:0 20px 44px rgba(16,42,74,.08);
}
.autodoprava-media-card img{
  width:100%;
  display:block;
  border-radius:18px;
  object-fit:cover;
}

/* Reference gallery */
.refp-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:14px;
  box-shadow:0 18px 40px rgba(16,42,74,.06);
}
.refp-img{
  position:relative;
  border-radius:16px;
  overflow:hidden;
}
.ref-main{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  background:#f3f6fb;
}
.ref-view{
  position:absolute;
  right:12px;
  bottom:12px;
  background:rgba(20,42,74,.84);
  color:#fff;
  border:0;
  padding:9px 13px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
  font-size:12px;
  box-shadow:0 14px 28px rgba(0,0,0,.14);
}
.ref-view:hover{
  background:rgba(56,155,211,.98);
}
.ref-thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}
.ref-thumb{
  width:68px;
  height:56px;
  border:1px solid var(--line);
  border-radius:13px;
  overflow:hidden;
  padding:0;
  background:#fff;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(16,42,74,.06);
}
.ref-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ref-thumb.active{
  border:2px solid #48a7d8;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(13,27,46,.90);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}
.lightbox.open{display:flex}
.lightbox-inner{
  position:relative;
  width:min(1160px,100%);
  max-height:92vh;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 34px 100px rgba(0,0,0,.34);
}
.lightbox-stage{
  position:relative;
  background:#f7f9fc;
}
.lightbox-main{
  width:100%;
  max-height:calc(92vh - 126px);
  object-fit:contain;
  display:block;
  background:#f7f9fc;
}
.lightbox-thumbs{
  display:flex;
  gap:10px;
  padding:16px 18px 18px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  background:#fff;
}
.lightbox-thumb{
  width:78px;
  height:60px;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  padding:0;
  background:#fff;
  cursor:pointer;
}
.lightbox-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.lightbox-thumb.active{
  border:2px solid #48a7d8;
}
.lb-prev,.lb-next,.lb-close{
  position:absolute;
  border:0;
  cursor:pointer;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(20,42,74,.84);
}
.lb-prev,.lb-next{
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border-radius:999px;
  font-size:32px;
}
.lb-prev{left:18px}
.lb-next{right:18px}
.lb-close{
  top:16px;
  right:16px;
  width:48px;
  height:48px;
  border-radius:14px;
  font-size:26px;
}
.lb-prev:hover,.lb-next:hover,.lb-close:hover{
  background:rgba(56,155,211,.98);
}

/* Navody responsive */
.navody-video-responsive{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
  background:#f3f6fb;
}
.navody-video-responsive iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
@media (max-width:980px){
  .autodoprava-media-stack{margin-top:18px}
  .refs-page-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .refs-page-grid{grid-template-columns:1fr}
  .ref-main{height:190px}
  .ref-thumb{width:58px;height:48px}
  .lightbox{padding:12px}
  .lightbox-inner{border-radius:20px}
  .lb-prev,.lb-next{width:46px;height:46px;font-size:24px}
  .lb-prev{left:10px}
  .lb-next{right:10px}
  .lb-close{top:10px;right:10px;width:42px;height:42px}
  .lightbox-thumbs{gap:8px;padding:14px 14px 16px}
  .lightbox-thumb{width:62px;height:48px}
  .navody-page .container{padding-left:18px;padding-right:18px}
}


/* Contact form status */
.contact-status{
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.contact-status.is-success{
  background: rgba(56, 155, 211, .10);
  border-color: rgba(56, 155, 211, .28);
  color: #0d1b2e;
}
.contact-status.is-error{
  background: rgba(220, 53, 69, .08);
  border-color: rgba(220, 53, 69, .22);
  color: #0d1b2e;
}


/* mobile-only nav kontakt */
.nav-link-mobile-only{
  display:none;
}

@media (max-width: 980px){
  .nav.is-open .nav-link-mobile-only{
    display:block;
    width:100%;
  }
}


/* SOCIAL ICONS FIX */
.mobile-social {
  display:flex;
  justify-content:center;
  gap:15px;
  padding:10px 0;
}

.mobile-social a {
  color:#2b6cb0;
  font-size:22px;
}

.contact-social {
  display:flex;
  justify-content:center;
  gap:20px;
  padding:20px 0;
}

.contact-social a {
  color:#2b6cb0;
  font-size:26px;
}

@media(min-width:768px){
  .mobile-social{display:none;}
}


/* TOP NAV MOBILE SOCIAL */
.mobile-social-top {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.mobile-social-top a {
  color:#2b6cb0;
  font-size:20px;
}

/* hide on desktop */
@media(min-width:768px){
  .mobile-social-top{display:none;}
}


/* CONTACT SOCIAL ALIGN FIX */
.contact-social{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:15px;
  margin-top:10px;
}


/* SUCCESS BANNER */
.form-success-banner{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(90deg,#2b6cb0,#3182ce);
  color:white;
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  z-index:9999;
  display:none;
  opacity:1;
  transition:opacity .5s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
