@font-face{
  font-family:"Roboto";
  src:url("fonts/Roboto.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

:root{
  --font-sans:"Roboto",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;

  --topbar-bg:#2f2f2f;
  --topbar-fg:#ffffff;
  --topbar-muted:rgba(255,255,255,.75);
  --topbar-gap:18px;
  --topbar-height:48px;
  --topbar-pad-x:18px;

  --header-bg:#ffffff;

  --nav-color:#0b3a57;
  --nav-hover:#0b3a57;
  --nav-accent:#0aa0c8;
  --radius:14px;

  --bg-gradient:linear-gradient(90deg,#1b2a3c 0%,#123453 45%,#0b4e7a 100%);

  --shadow-soft:0 18px 40px rgba(0,0,0,.25);
  --shadow-soft-hover:0 22px 50px rgba(0,0,0,.32);

  --border-h:30px;
}

html{
  font-size:16px;
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family:var(--font-sans);
  font-size:1rem;
  line-height:1.5;
}

.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.hero__cta,
.products__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.125rem 2.625rem;
  border-radius:var(--radius);
  background:#fff;
  color:var(--nav-color);
  text-decoration:none;
  font-weight:900;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.hero__cta:hover,
.products__cta:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft-hover);
}

.hero__cta:active,
.products__cta:active{
  transform:translateY(0);
  filter:brightness(.98);
}

.topbar{
  background:var(--topbar-bg);
  color:var(--topbar-fg);
  font-size:.9375rem;
}

.topbar__inner{
  min-height:var(--topbar-height);
  padding:0 var(--topbar-pad-x);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--topbar-gap);
}

.topbar__left{
  display:flex;
  align-items:center;
  gap:var(--topbar-gap);
  flex-wrap:wrap;
}

.topbar__group{
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.topbar__icon{
  display:inline-flex;
  width:18px;
  height:18px;
  opacity:.95;
}

.topbar__icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.topbar__link{
  color:var(--topbar-fg);
  text-decoration:none;
  line-height:1.2;
}

.topbar__link:hover{
  text-decoration:underline;
}

.topbar__muted{
  color:var(--topbar-muted);
}

.topbar__sep{
  color:rgba(255,255,255,.45);
}

.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.topbar__langs--flags{
  display:flex;
  gap:10px;
}

.topbar__flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:22px;
  border-radius:3px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.25);
  text-decoration:none;
}

.topbar__flag:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

.flag{
  width:100%;
  height:100%;
  display:block;
}

.flag--cz{
  background:linear-gradient(#ffffff 0 50%,#d7141a 50% 100%);
  position:relative;
}

.flag--cz::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:52%;
  height:100%;
  background:#11457e;
  clip-path:polygon(0 0,100% 50%,0 100%);
}

.flag--gb{
  background:
    linear-gradient(135deg,transparent 45%,#ffffff 45% 55%,transparent 55%),
    linear-gradient(45deg,transparent 45%,#ffffff 45% 55%,transparent 55%),
    linear-gradient(135deg,transparent 48%,#c8102e 48% 52%,transparent 52%),
    linear-gradient(45deg,transparent 48%,#c8102e 48% 52%,transparent 52%),
    linear-gradient(90deg,transparent 0 42%,#ffffff 42% 58%,transparent 58% 100%),
    linear-gradient(transparent 0 42%,#ffffff 42% 58%,transparent 58% 100%),
    linear-gradient(90deg,transparent 0 46%,#c8102e 46% 54%,transparent 54% 100%),
    linear-gradient(transparent 0 46%,#c8102e 46% 54%,transparent 54% 100%),
    #012169;
}

.topbar__langs--select{
  display:none;
  position:relative;
}

.topbar__select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background:rgba(255,255,255,.08);
  color:var(--topbar-fg);
  border:1px solid rgba(255,255,255,.25);
  border-radius:6px;
  padding:.5rem 2.125rem .5rem .75rem;
  font-size:.875rem;
  line-height:1;
  cursor:pointer;
}

.topbar__select:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

.topbar__langs--select::after{
  content:"";
  position:absolute;
  right:12px;
  top:50%;
  width:8px;
  height:8px;
  border-right:2px solid rgba(255,255,255,.9);
  border-bottom:2px solid rgba(255,255,255,.9);
  transform:translateY(-60%) rotate(45deg);
  pointer-events:none;
}

.site-header{
  background:var(--header-bg);
  /* padding:1rem 0; */
}

.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:1.125rem 1.625rem;
  max-width:1400px;
  margin:0 auto;
}

.site-header__logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.site-header__logo img{
  height:70px;
  width:auto;
  display:block;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:70px;
}

.site-nav__link{
  color:var(--nav-color);
  text-decoration:none;
  font-weight:800;
  font-size:clamp(1.25rem,2vw,1.875rem);
  letter-spacing:.2px;
  position:relative;
  padding:.625rem .625rem;
  border-radius:var(--radius);
  transition:transform .18s ease,background-color .18s ease,box-shadow .18s ease;
}

.site-nav__link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:3px;
  background:linear-gradient(90deg,transparent,var(--nav-accent),transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
  opacity:.95;
}

.site-nav__link:hover{
  transform:translateY(-2px);
}

.site-nav__link:hover::after{
  transform:scaleX(1);
}

.burger{
  display:none;
  width:54px;
  height:44px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-direction:column;
  transition:box-shadow .18s ease,transform .18s ease,background-color .18s ease;
}

.burger:hover{
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  transform:translateY(-1px);
  background:rgba(11,58,87,.04);
}

.burger__line{
  width:26px;
  height:3px;
  background:var(--nav-color);
  border-radius:999px;
  transition:transform .2s ease,opacity .2s ease;
}

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

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

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

.mobile-menu{
  display:none;
  border-top:1px solid rgba(0,0,0,.12);
  overflow:hidden;
  max-height:0;
  transition:max-height .28s ease;
}

.mobile-menu__nav{
  display:flex;
  flex-direction:column;
  padding:10px 14px 16px;
}

.mobile-menu__link{
  color:var(--nav-color);
  text-decoration:none;
  font-weight:800;
  font-size:1.375rem;
  padding:.875rem .875rem;
  border-radius:14px;
  transition:background-color .18s ease,transform .18s ease;
}

.mobile-menu__link:hover{
  background:rgba(11,58,87,.06);
  transform:translateX(2px);
}

.mobile-menu.is-open{
  max-height:420px;
}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:var(--bg-gradient);
}

.hero__inner{
  max-width:1400px;
  margin:0 auto;
  padding:4.375rem 1.625rem 6.875rem;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  gap:40px;
}

.hero__content{
  min-width:0;
}

.hero__title{
  margin:0 0 2.125rem;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.08;
  font-size:clamp(2.125rem,4.2vw,4.875rem);
  text-wrap:balance;
}

.hero__cta{
  font-size:clamp(1.125rem,1.4vw,1.75rem);
  padding:1.125rem 2.125rem;
  font-weight:800;
}

.hero__media{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.hero__img{
  width:min(620px,100%);
  height:auto;
  display:block;
  filter:drop-shadow(0 26px 40px rgba(0,0,0,.35));
}

.hero__border{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:var(--border-h);
  background-image:url("images/border.svg");
  background-repeat:repeat-x;
  background-position:left bottom;
  background-size:auto var(--border-h);
  opacity:.95;
}

.trust{
  background:#fff;
  color:var(--nav-color);
}

.trust__inner{
  max-width:1100px;
  margin:0 auto;
  padding:5.625rem 1.625rem 5.9375rem;
  text-align:center;
}

.trust__title{
  margin:0 0 1.625rem;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.05;
  color:var(--nav-color);
  font-size:clamp(2rem,3.4vw,3.25rem);
}

.trust__text{
  margin:0 auto 2.875rem;
  max-width:980px;
  color:rgba(0,0,0,.68);
  font-size:clamp(1rem,1.7vw,1.5rem);
  line-height:1.7;
  font-weight:500;
  text-wrap:pretty;
}

.trust__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.125rem 2.625rem;
  border-radius:var(--radius);
  background:#062a45;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:clamp(1rem,1.5vw,1.25rem);
  box-shadow:0 16px 36px rgba(0,0,0,.18);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.trust__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 44px rgba(0,0,0,.24);
}

.trust__cta:active{
  transform:translateY(0);
  filter:brightness(.98);
}

.products{
  position:relative;
  color:#fff;
  background:var(--bg-gradient);
}

.products__inner{
  max-width:1400px;
  margin:0 auto;
  padding:5.625rem 1.625rem 7.5rem;
  text-align:center;
}

.products__title{
  margin:0 0 4rem;
  font-weight:900;
  letter-spacing:.2px;
  font-size:clamp(2.125rem,4vw,3.5rem);
}

.products__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:36px;
  align-items:stretch;
}

.product-card{
  background:#fff;
  color:var(--nav-color);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 22px 46px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
  transition:transform .22s ease,box-shadow .22s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.product-card__head{
  padding:24px 26px;
  color:#fff;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-card__brand{
  height:46px;
  width:auto;
  max-width:100%;
  display:block;
}

.product-card__body{
  padding:26px 30px 34px;
  font-size:1rem;
  line-height:1.65;
  font-weight:500;
}

.product-card--crm .product-card__head{ background:linear-gradient(180deg,#1D4E9E,#4472C2); }
.product-card--reporting .product-card__head{ background:linear-gradient(180deg,#F68712,#F9A70D); }
.product-card--it .product-card__head{ background:linear-gradient(180deg,#1F9236,#40B93C); }
.product-card--ists .product-card__head{ background:linear-gradient(90deg,#7E1C9E,#A944C2); }
.product-card--gluko .product-card__head{ background:linear-gradient(90deg,#00ACDF,#4DC5E1); }

.product-card--wide{
  grid-column:span 1;
}

.product-card--side{
  flex-direction:row;
  align-items:stretch;
}

.product-card--side .product-card__head{
  width:42%;
  min-width:260px;
  padding:28px;
  justify-content:center;
}

.product-card--side .product-card__brand{
  height:58px;
}

.product-card--side .product-card__body{
  width:58%;
  text-align:left;
  padding:26px 30px;
  display:flex;
  align-items:center;
}

.products__cta{
  margin-top:4rem;
  font-size:clamp(1.125rem,1.5vw,1.75rem);
}

.products__border{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:var(--border-h);
  background-image:url("images/border-dark.svg");
  background-repeat:repeat-x;
  background-position:left bottom;
  background-size:auto var(--border-h);
  opacity:.95;
}

.about{
  background:#fff;
  color:var(--nav-color);
}

.about__inner{
  max-width: 1400px;
  margin:0 auto;
  padding:5.25rem 1.625rem 5.625rem;
}

.about__title{
  margin:0 0 1.625rem;
  font-weight:900;
  letter-spacing:.2px;
  color:var(--nav-color);
  font-size:clamp(2.25rem,4.2vw,3.5rem);
  line-height:1.05;
}

.about__text{
  font-size:1rem;
  line-height:1.75;
  color:rgba(0,0,0,.72);
}

.about__img{
  float:right;
  width:420px;
  max-width:45%;
  margin:6px 0 24px 36px;
  height:auto;
  display:block;
  filter:none;
  box-shadow:none;
}

.about__text p{
  margin:0 0 1.625rem;
  font-weight:500;
}

.about__text::after{
  content:"";
  display:block;
  clear:both;
}

@media (min-width: 1001px){
  .products__grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
  }
  .product-card:not(.product-card--wide){
    grid-column:span 2;
  }
  .product-card--wide{
    grid-column:span 3;
  }
}

@media (max-width: 1100px){
  .hero__inner{
    grid-template-columns:1fr 1fr;
    padding:3.5rem 1.125rem 6.875rem;
    text-align:left;
  }
  .hero__media{
    justify-content:center;
  }
  .hero__title{
    margin-bottom:1.625rem;
  }
}

@media (max-width: 768px){
  .hero__inner{
    grid-template-columns:1fr;
    padding:3.5rem 1.125rem 6.875rem;
    text-align:center;
  }
  .hero__media{
    justify-content:center;
    display: none;
  }
  .hero__title{
    margin-bottom:1.625rem;
  }
}

@media (max-width: 1000px){
  .site-nav{ display:none; }
  .burger{ display:inline-flex; }
  .mobile-menu{ display:block; }

  .site-header__inner{
    padding:.875rem 1.125rem;
  }

  .site-header__logo img{
    height:56px;
  }

  .products__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .product-card--side{
    flex-direction:column;
  }
  .product-card--side .product-card__head{
    width:auto;
    min-width:0;
    justify-content:flex-start;
  }
  .product-card--side .product-card__body{
    width:auto;
    text-align:center;
  }
}

@media (max-width: 980px){
  .topbar__inner{
    padding:10px var(--topbar-pad-x);
    align-items:flex-start;
  }
  .topbar__left{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .topbar__group{
    white-space:normal;
    flex-wrap:wrap;
  }
}

@media (max-width: 900px){
  .trust__inner{
    padding:4rem 1.125rem 4.375rem;
  }
  .trust__text{
    margin-bottom:2.125rem;
  }

  .about__img{
    float:none;
    max-width:100%;
    width:100%;
    margin:0 0 1.625rem;
  }
}

@media (max-width: 760px){
  .products__grid{
    grid-template-columns:1fr;
  }
  .products__inner{
    padding:4rem 1.125rem 6.25rem;
  }
  .products__cta{
    width:50%;
    justify-content:center;
  }
}

@media (max-width: 680px){
  .topbar__langs--flags{ display:none; }
  .topbar__langs--select{
    display:inline-flex;
    align-items:center;
  }
}

@media (max-width: 520px){
  .site-header__inner{ gap:14px; }
  .burger{
    width:50px;
    height:42px;
  }

  .hero__inner{
    padding:2.75rem 1rem 6.125rem;
  }

  .hero__cta{
    width:50%;
  }

  .trust__cta{
    width:50%;
    padding:1rem 1.375rem;
  }

  .about__inner{
    padding:3.75rem 1rem 4rem;
  }
}

.reach{
  position:relative;
  color:#fff;
  background:var(--bg-gradient);
  overflow:hidden;
}

.reach__inner{
  max-width:1400px;
  margin:0 auto;
  padding:4.375rem 1.625rem calc(4.375rem + var(--border-h));
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
}

.reach__title{
  margin:0 0 1.5rem;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.08;
  font-size:clamp(2.125rem,4vw,3.5rem);
  text-wrap:balance;
}

.reach__text{
  margin:0 0 2.25rem;
  max-width:58ch;
  font-size:1.125rem;
  line-height:1.75;
  font-weight:500;
  color:rgba(255,255,255,.88);
  text-wrap:pretty;
}

.reach__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.125rem 2.625rem;
  border-radius:var(--radius);
  background:#fff;
  color:var(--nav-color);
  text-decoration:none;
  font-weight:900;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.reach__cta:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft-hover);
}

.reach__cta:active{
  transform:translateY(0);
  filter:brightness(.98);
}

.reach__media{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.reach__img{
  width:min(560px,100%);
  height:auto;
  display:block;
}

.reach__border{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:var(--border-h);
  background-image:url("images/border-dark.svg");
  background-repeat:repeat-x;
  background-position:left bottom;
  background-size:auto var(--border-h);
  opacity:.95;
}

@media (max-width: 1100px){
  .reach__inner{
    grid-template-columns:1fr;
    padding:3.5rem 1.125rem calc(3.5rem + var(--border-h));
    gap:28px;
  }
  .reach__media{
    justify-content:center;
  }
  .reach__text{
    max-width:65ch;
  }
}

@media (max-width: 520px){
  .reach__inner{
    padding:2.75rem 1rem calc(3rem + var(--border-h));
  }
  .reach__cta{
    width:50%;
  }
}

.refs{
  background:#fff;
  color:var(--nav-color);
}

.refs__inner{
  max-width:1400px;
  margin:0 auto;
  padding:5.25rem 1.625rem 5.5rem;
  text-align:center;
}

.refs__title{
  margin:0 0 1.25rem;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:clamp(2.125rem,4vw,3.5rem);
}

.refs__subtitle{
  margin:0 0 2.75rem;
  color:rgba(0,0,0,.62);
  font-size:1.125rem;
  line-height:1.6;
  font-weight:500;
}

.refs__carousel{ position:relative; }

.refs__viewport{
  overflow:hidden;
  padding: 0 78px; /* prostor pro šipky na desktopu */
}

.refs__track{
  display:flex;
  align-items:center;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding: 16px 0; /* jen svisle */
}
.refs__track::-webkit-scrollbar{ display:none; }

.refs__item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:120px;
  scroll-snap-align:center;
}

.refs__logo{
  width:100%;
  height:72px;
  max-width:240px;
  object-fit:contain;
  display:block;
  filter:grayscale(1) saturate(0) opacity(.75);
  transition:filter .18s ease;
}
.refs__item:hover .refs__logo{ filter:none; }

.refs__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  z-index:5;
}
.refs__nav--prev{ left:18px; }
.refs__nav--next{ right:18px; }

@media (max-width: 760px){
  .refs__viewport{ padding: 0 64px; }
  .refs__track{ gap:12px; }
  .refs__item{ min-height:96px; }
  .refs__logo{ height:62px; max-width:210px; }
}

@media (max-width: 520px){
  .refs__viewport{ padding: 0 56px; }
  .refs__nav{ width:44px; height:44px; }
  .refs__item{ min-height:88px; }
  .refs__logo{ height:56px; max-width:200px; }
}

.refs__dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:22px;
  flex-wrap:wrap;
}

.refs__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(11,58,87,.22);
  cursor:pointer;
  padding:0;
  flex:0 0 auto;
}

.refs__dot.is-active{
  width:28px;
  background:rgba(11,58,87,.75);
}

.refs__dots-ellipsis{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:10px;
  line-height:1;
  font-weight:900;
  color:rgba(11,58,87,.45);
  padding:0 4px;
  user-select:none;
  flex:0 0 auto;
}



.tst{
  position:relative;
  color:#fff;
  background:var(--bg-gradient);
  overflow:hidden;
}

.tst__inner{
  max-width:1400px;
  margin:0 auto;
  padding:5.5rem 1.625rem calc(5.25rem + var(--border-h));
  text-align:center;
}

.tst__title{
  margin:0 0 2.75rem;
  font-weight:900;
  font-size:clamp(2.25rem,4vw,3.5rem);
  letter-spacing:.2px;
}

.tst__carousel{
  position:relative;
}

.tst__viewport{
  overflow:hidden;
}

.tst__track{
  display:flex;
  gap:0;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.tst__track::-webkit-scrollbar{ display:none; }

.tst__slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  padding:0 5.5rem; /* prostor pro šipky */
  box-sizing:border-box;
}

.tst__card{
  position:relative;
  background:#eef0ea;
  color:#1b2a3c;
  border-radius:160px;
  padding:3rem 3.25rem;
  max-width:1150px;
  margin:0 auto;
  box-sizing:border-box;
}

.tst__quotes{
  position:absolute;
  right:70px;
  bottom:46px;
  font-size:120px;
  line-height:1;
  color:rgba(11,58,87,.16);
  pointer-events:none;
  user-select:none;
}

.testimonial__stars{
  color:#ffb400;
  font-size:1.75rem;
  letter-spacing:.25rem;
  margin:0 0 1.75rem;
}

.testimonial__content{
  display:flex;
  align-items:center;
  gap:2.5rem;
  text-align:left;
}

.testimonial__photo{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 auto;
}

.testimonial__text p{
  margin:0 0 1rem;
  font-size:1rem;
  line-height:1.75;
  font-weight:500;
  color:rgba(0,0,0,.72);
}

.testimonial__text strong{
  font-weight:900;
  color:#1b2a3c;
}

.testimonial__text span{
  color:rgba(0,0,0,.65);
  font-weight:500;
}

.tst__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:72px;
  height:72px;
  border-radius:999px;
  border:0;
  background:#cdd9e4;
  color:#1b2a3c;
  cursor:pointer;
  font-size:40px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .18s ease, background-color .18s ease;
}

.tst__nav:hover{
  background:#ffffff;
  transform:translateY(-50%) scale(1.05);
}

.tst__nav--prev{ left:0; }
.tst__nav--next{ right:0; }

.tst__dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:1.5rem;
}

.tst__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:width .18s ease, background-color .18s ease;
}

.tst__dot.is-active{
  background:rgba(255,255,255,.9);
  width:28px;
}

.tst__border{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:var(--border-h);
  background-image:url("images/border-dark.svg");
  background-repeat:repeat-x;
  background-position:left bottom;
  background-size:auto var(--border-h);
  opacity:.95;
}

@media (max-width: 1100px){
  .tst__slide{
    padding:0 3.5rem;
  }
  .tst__card{
    border-radius:40px;
    padding:2.5rem 2.25rem;
  }
  .tst__quotes{
    right:34px;
    bottom:18px;
    font-size:96px;
  }
  .testimonial__photo{
    width:130px;
    height:130px;
  }
}

@media (max-width: 900px){
  .tst__nav{
    display:none;
  }
  .tst__slide{
    padding:0;
  }
  .testimonial__content{
    flex-direction:column;
    text-align:center;
  }
  .tst__quotes{
    display:none;
  }
}

@media (max-width: 520px){
  .tst__inner{
    padding:4rem 1rem calc(4rem + var(--border-h));
  }
  .tst__card{
    padding:2rem 1.5rem;
  }
}

.tst__viewport{
  overflow:hidden;
}

.tst__track{
  display:flex;
  align-items:stretch;   /* KLÍČOVÉ */
}

.tst__slide{
  flex:0 0 100%;
  height:auto;
  display:flex;
}

.tst__card{
  height:100%;           /* karta vyplní celý slide */
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact{
  background:#dfe8ef;
  color:var(--nav-color);
}

.contact__inner{
  max-width:1400px;
  margin:0 auto;
  padding:5.25rem 1.625rem 5.75rem;
}

.contact__title{
  margin:0 0 2.5rem;
  text-align:center;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:clamp(2.25rem,4vw,3.5rem);
}

.contact__form{
  max-width:1200px;
  margin:0 auto;
}

.contact__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.75rem 3rem;
}

.field--full{ grid-column:1 / -1; }

.field__label{
  display:block;
  margin:0 0 .5rem;
  font-size:1.125rem;
  font-weight:500;
  color:rgba(0,0,0,.75);
}

.field__input{
  width:100%;
  box-sizing:border-box;
  padding:1.05rem 1.1rem;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font:inherit;
  font-size:1rem;
  line-height:1.2;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.field__input:focus{
  border-color:rgba(11,58,87,.35);
  box-shadow:0 0 0 4px rgba(11,58,87,.10);
}

.field__textarea{
  resize:vertical;
  min-height:190px;
}

.field--hp{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contact__actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.9rem;
  margin-top:2.25rem;
}

.contact__submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1rem 3.25rem;
  border-radius:14px;
  border:0;
  background:#062a45;
  color:#fff;
  font-weight:900;
  font-size:1.25rem;
  cursor:pointer;
  box-shadow:0 16px 36px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.contact__submit:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 44px rgba(0,0,0,.24);
}

.contact__submit:active{
  transform:translateY(0);
  filter:brightness(.98);
}

.contact__note{
  margin:0;
  color:rgba(0,0,0,.65);
  font-size:1rem;
  text-align:center;
  min-height:1.25rem;
}

@media (max-width: 900px){
  .contact__grid{
    grid-template-columns:1fr;
    gap:1.25rem;
  }
}

@media (max-width: 520px){
  .contact__inner{
    padding:4rem 1rem 4.5rem;
  }
  .contact__submit{
    width:100%;
  }
}

.mapblock{
  width:100%;
  background:#ffffff;
  color:var(--nav-color);
}

.mapblock__inner{
  max-width:100%;
  margin:0 auto;
  padding:0;
}

.mapblock__title{
  margin:0 0 1.5rem;
  text-align:center;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:clamp(2rem,3.2vw,3.5rem);
}

.mapblock__map{
  width:100%;
  height:520px;
  overflow:hidden;
}

@media (max-width: 900px){
  .mapblock__map{ height:420px; }
}

@media (max-width: 520px){
  .mapblock__inner{ padding:3.5rem 1rem 4rem; }
  .mapblock__map{ height:360px; border-radius:14px; }
}

.site-footer{
  position:relative;
  background:#4a4a4a;
  color:#ffffff;
  overflow:hidden;
}

.site-footer__inner{
  max-width:1400px;
  margin:0 auto;
  padding:4.25rem 1.625rem calc(4.25rem + var(--border-h));
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:3.5rem 6rem;
  align-items:start;
}

.site-footer__heading{
  margin:0 0 .75rem;
  font-weight:900;
  font-size:1.8rem;
  letter-spacing:.2px;
}

.site-footer__heading--spaced{
  margin-top:2.25rem;
}

.site-footer__line{
  margin:0 0 .55rem;
  font-size:1.25rem;
  line-height:1.55;
  font-weight:500;
  color:rgba(255,255,255,.92);
}

.site-footer__muted{
  margin-top:.9rem;
  color:rgba(255,255,255,.90);
}

.site-footer__link{
  color:#ffffff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
  padding-bottom:2px;
  transition:opacity .18s ease, border-color .18s ease;
}

.site-footer__link:hover{
  opacity:.9;
  border-color:rgba(255,255,255,.65);
}

.site-footer__link--strong{
  font-weight:900;
  border-bottom-color:rgba(255,255,255,.55);
}

.site-footer__border{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  height:var(--border-h);
  background-image:url("images/border.svg");
  background-repeat:repeat-x;
  background-position:left bottom;
  background-size:auto var(--border-h);
  opacity:.95;
}

@media (max-width: 1000px){
  .site-footer__inner{
    grid-template-columns:1fr;
    gap:2.75rem;
  }
  .site-footer__heading{
    font-size:1.75rem;
  }
  .site-footer__line{
    font-size:1.125rem;
  }
}

@media (max-width: 520px){
  .site-footer__inner{
    padding:3.5rem 1rem calc(3.5rem + var(--border-h));
  }
}
