:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --background-color: #ecf0f1;
  --text-color: #2c3e50;
  --nav-bg-color: rgba(255, 255, 255, 0.91);
  --nav-link-color: #2c3e50;
  --nav-link-hover-color: #3498db;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 500;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: rgb(255 255 255 / 90%);
  padding: 1em 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

main {
  background-image: url('img/city1_1920.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position-y: 70%;
}

/* Nastavení pro mobilní zařízení s maximální šířkou obrazovky 600px */
@media (max-width: 600px) {
  main {
    background-image: url('img/city1_1200.jpg');
    background-position-y: 70%; /* Znovu definovat, pokud je potřeba přizpůsobit */
  }
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 1em;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

footer {
  color: black;
  text-align: center;

  bottom: 0;
  width: 100%;
}

div#main-section1 {
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 50px;
}

div#main-section1 h3 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #042d41;
  margin: 14px 0 0;
}

div.main-section1-left {
  flex: 1 1 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 25px;
  padding-right: 50px;
}

div.main-section1-right {
  flex: 1 1 0;
  box-sizing: border-box;
  padding-left: 50px;
  padding-top: 6px;
  line-height: 30px;
  align-self: stretch;
  border-left: 3px solid #fdca80;
}

div#main-section2 {
  background-color: var(--section-color);
  height: 320px;
  background-image: url('img/office2_1170.jpg');
  background-size: cover;
  background-position: center;
}

/* Nastavení pro mobilní zařízení s maximální šířkou obrazovky 600px */
@media (max-width: 600px) {
  div#main-section2 {
    background-image: url('img/office2_1200.jpg');
    background-position-y: 70%; /* Znovu definovat, pokud je potřeba přizpůsobit */
  }
}

div#main-section3 {
  margin-top: 60px;
  margin-bottom: 50px;
}

div.class-section {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

div.products {
  width: 80%;
  margin-bottom: 40px;
  padding: 2px;
  box-sizing: border-box;
  background-color: var(--section-color);
}

div.right {
  align-self: flex-end;
}

div.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}

div.products-wrapper .products {
  background-color: #e0e0e078;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 20px;
}

div.products-wrapper .products h2 {
  width: 35%;
  text-align: center;
}



.products-icon {
  width: 35%;
  text-align: center;
  background-color: white;
  padding: 20px 0 20px 0;
  height: 150px;
  display: flex;
  justify-content: center;
}

.products-icon img {
  padding-left: 30px;
  padding-right: 30px;
  max-width: -webkit-fill-available;
}



.products-text {
  width: 65%;
  text-align: justify;
  padding: 30px;
}

div#main-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

div#main-box-left {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(4, 45, 65, 0.94), rgba(6, 58, 82, 0.88));
  border: 1px solid rgba(253, 202, 128, 0.28);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  padding: 44px 52px 50px;
  margin-right: 410px;
  margin-top: 75px;
}

/* jemný svit v pozadí — stejný rukopis jako sekce Kariéra */
div#main-box-left::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 25% 15%, rgba(253, 202, 128, 0.22), transparent 55%),
              radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
  filter: blur(2px);
}

div#main-box-right {
  width: 50%;
}

div#main-box-left-inner {
  width: 380px;
  float: right;
}

div#main-box-left-inner h1 {
  color: white;
  line-height: 45px;
  font-size: 40px;
  margin: 0;

}

div#main-box-left-inner h3 {
  color: white;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;


}

main-section1-1 img.logo {
  width: 200px;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: var(--nav-bg-color);
  padding: 1em 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
}

.nav-links {
  list-style-type: none;
  display: flex;
  gap: 1.2em;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--nav-link-color);
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--nav-link-hover-color);
}

.menu-icon {
  display: none;
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: var(--nav-bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1em;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }

  .menu-icon span {
    font-size: 1.5em;
    color: var(--nav-link-color);
  }
  .company-weight {
    font-weight: 700;
  }
  .invis {
    display: none;
  }
}

p.main-section1-2 {
  margin-bottom: 0;
}

.company-panel {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  /* Světlé pozadí panelu */
  border-radius: 10px;
  /* Zaoblené rohy panelu */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Jemný stín */
  margin: 10px 0;
  /* Mezery mezi panely */
  padding: 30px 30px;
  /* Vnitřní odsazení */
  opacity: 0; /* Skryje panel */
  transform: translateY(20px); /* Posune panel dolů */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Přechodové efekty */

}
.company-panel.visible {
  opacity: 1; /* Zobrazí panel */
  transform: translateY(0); /* Posune panel zpět do původní pozice */
}

.company-panel img {
  max-width: 150px;
  /* Maximální šířka loga */
  height: auto;
  margin-right: 30px;
  /* Mezera mezi logem a textem */
}

.company-panel .text-content {
  flex: 1;
  /* Text zabírá zbývající místo */
  padding-left: 30px;
  border-left: 3px solid #fdca80;
  /* Bronzový levý okraj */
}

.company-panel h3 {
  margin: 0 0 10px;
  /* Odsazení nadpisu */
  color: #333;
  /* Barva textu nadpisu */
}

.company-panel p {
  margin: 0;
  color: #666;
  /* Barva textu popisu */
  line-height: 1.5;
  /* Vyšší řádkování pro čitelnost */
}

.products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Mezera mezi panely */
}

#main-section3 h2 {
  text-align: center;
  margin-bottom: 40px;
  /* Odsazení nadpisu od panelů */
  color: #333;
  /* Barva nadpisu */
  font-size: 30px;
  font-family: Montserrat, Arial, sans-serif;
}

/* Media queries pro menší displeje */
@media (max-width: 1170px) {
  div.class-section {
    width: unset;
    max-width: 1170px;
    margin: 0 auto;
    margin: 20px 20px 20px 20px;
  }
}

@media (max-width: 1070px) {
  .main-section1-left {
    width: 100%;
  }
  p.main-section1-2 {
    margin-bottom: 25px;
    font-weight: 700;
  }

  div#main-section1 {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  div.main-section1-left {
    height: unset;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 25px;
    padding-right: 0px;
    width: 100%;
  }


  div.main-section1-right {
    padding-left: 0px;
    line-height: 30px;
    border-left: unset;
    border-top: 3px solid #fdca80;
  }

  p.main-section1-3 {
    text-align: justify;
  }

}

@media (max-width: 768px) {
  div#main-container {
    justify-content: unset;
  }
  div#main-box-left {
    width: unset;
  }
  div#main-container h3 {
    text-align: justify;
  }
  div.class-section {
    margin-top: 30px;
  }


}

@media (max-width: 480px) {
  div#main-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    
}
div#main-box-left {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: unset;
    /* margin-left: 10px; */
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 40px;
   
  }
  div#main-box-left-inner {
    width: 100%;
    float: unset;
  }
  p.main-section1-2 {
    font-weight: 600;
    text-align: justify;
    margin-bottom: 25px;
  }
  p.main-section1-3{
    margin-top: 30px;
  }
}





@media (max-width: 768px) {
  .company-panel {
    flex-direction: column;
    /* Umožňuje vertikální uspořádání panelů */
    align-items: flex-start;
    /* Zarovná obsah panelu vlevo */
    padding: 15px;
    
  }

  .company-panel img {
    max-width: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .company-panel .text-content {
    flex: none;
    padding-left: 0;
    border-left: none;
  }

  #main-section3 h2 {
    margin-bottom: 30px;
  }
  .company-panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .logo {
    height: 30px;
  }
  div#main-section2 {
    height: 150px;
    margin-left: 0;
    margin-right: 0;
  }
  div#main-box-left-inner h1 {
    
    line-height: 45px;
}
}

@media (max-width: 480px) {
  .company-panel {
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .company-panel p {
    text-align: justify;
    
  }

  .company-panel img {
    max-width: 190px;
    margin-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .company-panel .text-content {
    padding-left: 0;
  }

  #main-section3 h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  #main-section3 h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

}
.learn-more {
  margin-top: 23px;
}

.delayed02 {
  margin-top: 15px;
}

.learn-more a {
  display: inline-block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px; 
  
  text-decoration: none; /* Odstraní podtržení */
  font-weight: bold;
  position: relative;
  margin-right: 20px; /* Prostor pro šipku */
  transition: color 0.3s ease;
  font-weight: 100;
  letter-spacing: 3px;
  word-spacing: 1px;
  
  padding-bottom: 2px;
}

.learn-more a:link,
.learn-more a:visited,
.learn-more a:hover,
.learn-more a:active {
  color: #fff; /* Bílá barva pro všechny stavy odkazu */
  text-decoration: none; /* Odstraní podtržení ve všech stavech */
}

/* Základní styl odkazu */
.learn-more {
  position: relative; /* Umožňuje absolutní pozicování pro ::after */
  display: inline-block; /* Umožňuje použití paddingu a pozicování */
}

.learn-more::after {
  content: '>';
  font-size: 18px; /* Velikost textu pro užší šipku */
  color: #fdca80; /* Barva šipky */
  font-family: Arial, sans-serif; /* Konzistentní font */
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 1; /* Zajišťuje správné vertikální zarovnání */
  transform: translateY(-50%) scaleY(2); /* Zvětšení výšky šipky */
  transition: none; /* Žádný přechod */
}

/* Styl odkazu při najetí kurzorem */
.learn-more a:hover {
  text-decoration: underline !important; /* Podtržení textu při hoveru */
}

#our_team {
  scroll-margin-top: 100px; /* Nebo jakákoli výška vašeho navigačního baru */
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  
}

/* Styl pro opožděné zobrazení na obrazovkách větších než 768px */
@media (min-width: 768px) {
  .fade-in.delayed {
    transition-delay: 0.5s; /* Zpoždění 0.5s */
  }
  .fade-in.delayed2 {
    transition-delay: 0.8s; /* Zpoždění 0.5s */
  }
}


.fade-in.delayed01 {
  transition-delay: 0.1s; 
}
.fade-in.delayed02 {
  transition-delay: 0.5s; 
}.fade-in.delayed03 {
  transition-delay: 1s;
}


div.company-panel-a3 a {
  color: black!important;
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

div.company-panel-a3 a::after  {
  left: 280px;
  top: 50%;
  
}




/* =========================
   PRO RR MARKET – premium panel
   ========================= */

.company-panel--pro {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #042d41, #042d41);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(253, 202, 128, 0.28);
  padding: 34px 30px;
}

/* jemný "svit" v pozadí */
.company-panel--pro::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 30% 20%, rgba(253, 202, 128, 0.28), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.10), transparent 55%);
  pointer-events: none;
  filter: blur(2px);
}

/* badge PRO */
.company-panel--pro .company-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  background: rgba(253, 202, 128, 0.16);
  border: 1px solid rgba(253, 202, 128, 0.45);
  color: #fdca80;
  z-index: 2;
}

/* logo + text */
.company-panel--pro img {
  max-width: 150px;
  margin-right: 30px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.25));
}

.company-panel--pro .text-content {
  border-left: 3px solid rgba(253, 202, 128, 0.8);
  padding-left: 34px;
  z-index: 2;
  position: relative;
}

.company-panel--pro h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-family: Montserrat, Arial, sans-serif;
}

.company-panel--pro p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
}

/* CTA – tlačítkovější a prémiovější */
.company-panel--pro .learn-more {
  margin-top: 22px;
}

.company-panel--pro .learn-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(253, 202, 128, 0.55);
  background: rgba(253, 202, 128, 0.12);
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none !important;
}

.company-panel--pro .learn-more a:hover {
  transform: translateY(-1px);
  background: rgba(253, 202, 128, 0.20);
  border-color: rgba(253, 202, 128, 0.75);
}

/* vypni původní ">" šipku jen u PRO panelu */
.company-panel--pro .learn-more::after {
  content: none;
}

/* Mobil – stejné chování jako tvoje panely, jen upravíme border a padding */
@media (max-width: 768px) {
  .company-panel--pro {
    padding: 22px;
  }

  .company-panel--pro img {
    margin-right: 0;
            margin: 0 auto 16px;
  }

  .company-panel--pro .text-content {
    border-left: none;
    border-top: 3px solid rgba(253, 202, 128, 0.8);
    padding-left: 0;
    padding-top: 18px;
  }

  .company-panel--pro .company-badge {
    top: 14px;
    right: 14px;
  }
}

.company-panel--pro p{
  max-width: 860px;
}

.company-panel--pro h3{
  margin-bottom: 12px;
}

.company-panel--pro .learn-more a{
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.company-panel--pro .learn-more a:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}



.rr-market-mini {
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	list-style: none;
	font-size: 14px;
	color: rgba(255,255,255,.85);
}

.rr-market-mini li {
	position: relative;
	padding-left: 14px;
}

.rr-market-mini li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #fdca80;
	font-weight: 700;
}

/* =========================
   KARIÉRA
   ========================= */

#kariera {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #042d41, #063a52);
  padding: 80px 0;
  scroll-margin-top: 90px;
}

/* jemný svit v pozadí — stejný rukopis jako PRO panel */
#kariera::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 15% 15%, rgba(253, 202, 128, 0.18), transparent 50%),
              radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.07), transparent 55%);
  pointer-events: none;
  filter: blur(2px);
}

.kariera-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

/* ---- levý sloupec ---- */
.kariera-left {
  flex: 1 1 55%;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.kariera-eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(253, 202, 128, 0.16);
  border: 1px solid rgba(253, 202, 128, 0.45);
  color: #fdca80;
  margin-bottom: 18px;
}

.kariera-left h2 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 34px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 20px;
}

.kariera-lead {
  font-size: 18px;
  line-height: 1.7;
}

.kariera-left strong {
  color: #fdca80;
  font-weight: 600;
}

.kariera-benefits {
  list-style: none;
  margin: 26px 0;
  padding: 22px 26px;
  border-left: 3px solid #fdca80;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
}

.kariera-benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.kariera-benefits li:last-child {
  margin-bottom: 0;
}

.kariera-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fdca80;
  font-weight: 700;
}

.kariera-note {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- pravý sloupec – formulář ---- */
.kariera-right {
  flex: 1 1 45%;
  min-width: 0;
}

.kariera-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(253, 202, 128, 0.35);
}

.kariera-form h3 {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
  color: #042d41;
  margin: 0 0 6px;
}

.kariera-form-intro {
  margin: 0 0 22px;
  color: #666;
  font-size: 15px;
}

.kariera-form-msg {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.kariera-form-msg--ok {
  background: #eaf7ee;
  border: 1px solid #57b874;
  color: #1e5c31;
}

.kariera-form-msg--chyba {
  background: #fdecec;
  border: 1px solid #d9534f;
  color: #842029;
}

/* honeypot – past na roboty, pro člověka neviditelná */
.kariera-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.kariera-form-row {
  display: flex;
  gap: 14px;
}

.kariera-form-row .kariera-field {
  flex: 1;
  min-width: 0;
}

.kariera-field {
  margin-bottom: 16px;
}

.kariera-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #042d41;
  margin-bottom: 6px;
}

.kariera-optional {
  font-weight: 400;
  color: #999;
}

.kariera-field input,
.kariera-field select,
.kariera-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid #d7dde2;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: #2c3e50;
  background: #fbfcfd;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.kariera-field textarea {
  resize: vertical;
}

.kariera-field input:focus,
.kariera-field select:focus,
.kariera-field textarea:focus {
  outline: none;
  border-color: #fdca80;
  box-shadow: 0 0 0 3px rgba(253, 202, 128, 0.3);
  background: #ffffff;
}

/* nahrání CV */
.kariera-btn-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px dashed #c2b089;
  background: rgba(253, 202, 128, 0.12);
  color: #042d41;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.kariera-btn-file:hover {
  background: rgba(253, 202, 128, 0.25);
  border-color: #fdca80;
}

.kariera-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.kariera-file-item {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f5;
  border: 1px solid #d7dde2;
  font-size: 13px;
  color: #2c3e50;
}

.kariera-file-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #999;
}

.kariera-gdpr {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  margin: 4px 0 18px;
}

.kariera-submit {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(253, 202, 128, 0.55);
  border-radius: 12px;
  background: #042d41;
  color: #ffffff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kariera-submit:hover {
  transform: translateY(-2px);
  background: #06405c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

/* ---- responsivita ---- */
@media (max-width: 960px) {
  .kariera-inner {
    flex-direction: column;
    gap: 40px;
  }

  .kariera-left,
  .kariera-right {
    flex: none;
    width: 100%;
  }

  .kariera-form {
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  #kariera {
    padding: 50px 0;
  }

  .kariera-left h2 {
    font-size: 28px;
  }

  .kariera-lead {
    font-size: 16px;
  }

  .kariera-form {
    padding: 26px 20px;
  }

  .kariera-form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* =========================
   HERO – sjednocení se sekcí Kariéra
   ========================= */

.hero-eyebrow {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(253, 202, 128, 0.16);
  border: 1px solid rgba(253, 202, 128, 0.45);
  color: #fdca80;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

div#main-box-left-inner {
  position: relative;
  z-index: 2;
}

div#main-box-left-inner h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-accent {
  color: #fdca80;
}

div#main-box-left-inner h3 {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 16px;
}

.hero-cta {
  margin-top: 26px;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid rgba(253, 202, 128, 0.55);
  background: rgba(253, 202, 128, 0.12);
  color: #ffffff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta a::after {
  content: "›";
  color: #fdca80;
  font-size: 18px;
  line-height: 1;
}

.hero-cta a:hover {
  transform: translateY(-2px);
  background: rgba(253, 202, 128, 0.2);
  border-color: rgba(253, 202, 128, 0.75);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

/* eyebrow na světlém pozadí (sekce Kdo jsme) */
.section-eyebrow {
  display: inline-block;
  align-self: flex-start;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(253, 202, 128, 0.18);
  border: 1px solid rgba(201, 154, 78, 0.45);
  color: #a97b2c;
}

.section-accent {
  color: #c99a4e;
}

/* nadpis Naše produkty & služby – zlatá linka */
#main-section3 h2 {
  position: relative;
  padding-bottom: 16px;
}

#main-section3 h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: #fdca80;
}

/* tablet a mobil – zrušení pevného 410px odsazení, panel se přizpůsobí šířce */
@media (max-width: 900px) {
  div#main-box-left {
    width: auto;
    margin: 75px 24px 0;
    padding: 34px 28px 40px;
  }

  div#main-box-left-inner {
    width: auto;
    max-width: 420px;
    float: none;
  }
}

@media (max-width: 480px) {
  div#main-box-left {
    margin: 40px 14px 0;
    padding: 30px 24px 34px;
  }

  div#main-box-left-inner h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
